I have extracts in MS SQL Server DTS Package with half of the data I need, the other half of the data needed to complete this query is sitting on an Oracle DB.
I am running a passthrough query from MS SQL Server that gets the rest of the data. How can join the tables from MS SQL Server and the tables from Oracle to complete this query without dumping the data into a temporary table to do a left join, or importing the rest of the data in my DTS package which already takes about three hours to run?
I am running a passthrough query from MS SQL Server that gets the rest of the data. How can join the tables from MS SQL Server and the tables from Oracle to complete this query without dumping the data into a temporary table to do a left join, or importing the rest of the data in my DTS package which already takes about three hours to run?