Is there a way to use DTS to transfer data from an Oracle table to SQL Server table getting only the Oracle table records that have a date that is greater that the SQL Servers table's max(date)? Kind of like:
INSERT INTO SQL.TABLE1 FROM SELECT * FROM ORACLE.TABLE1
WHERE ORACLE.TABLE1.CREATEDT > (SELECT MAX(CREATEDT)
FROM SQL.TABLE1)