lifeforest
Programmer
Hi all,
I need to select some data from a remote database, in the where clause i have a subquery which defines the select criteria. The subquery is from another remote database.
SELECT db1.field1, db1.field2
FROM remotedb1 db1
WHERE db1.field3 IN (SELECT db2.field4
FROM remotedb2 db2)
What's the best way to design a SSIS package to get the job done?
Thanks!
I need to select some data from a remote database, in the where clause i have a subquery which defines the select criteria. The subquery is from another remote database.
SELECT db1.field1, db1.field2
FROM remotedb1 db1
WHERE db1.field3 IN (SELECT db2.field4
FROM remotedb2 db2)
What's the best way to design a SSIS package to get the job done?
Thanks!