Nope not possible at least not like that anyway.
You will have to workaround this by either
1. Using linked server
2. DTSing over the Connection2.table1 over to Connection1 and then use TSQL
to do the INSERT.
--
Allan Mitchell MCSE,MCDBA, (Microsoft SQL Server MVP)
www.allisonmitchell.com - Expert SQL Server Consultancy.
www.SQLDTS.com - The site for all your DTS needs.
I support PASS - the definitive, global community
for SQL Server professionals -
http://www.sqlpass.org [quoted text, click to view] "Jeff Mil" <anonymous@discussions.microsoft.com> wrote in message
news:04c001c3d526$f8c269b0$a001280a@phx.gbl...
> Hi,
>
> Do you know if it's possible to execute a sql query like
> this in DTS :
> Insert Into Connection1.Table1 _
> Select * FROM Connection2.Table1 WHERE _
> Connection1.Table1.Field1 Not In _
> (Select Connection2.Table1.Field1 FROM _
> Connection2.Table1)
>
> So i have same tables in different database server. I want
> to insert new field from Connection2.Table1 into
> Connection1.Table1.
>
> Please help me or tell me if its possible in sql server 2k.
>
> Thanks.