My first query selects out records from a "master" table and places them in a destination database table on another server.
I want my second query to select out records from a second table on the in the same database as the master table based on the content of the records that have been already place on the other server.
I'm expecting that my query will look something like...
select * from <second table on first server> where <field name in second table> is in
(select <field name from table on other server> from <table on other server>)
Is there a way to do this?
Thanks for any help, Roscoe