Currently I have a package that includes the following tasks:
Truncate table
Drop Indexes
Copy Table (from Oracle Box to table in SQL)
Rebuild Indexes
It worked fine when the table was small but today we have over 50 million rows and it grows by about 175,000 rows per night.
I would like to create a package that will only bring over updates, inserts & deletes. How can I do this using DTS?
Thanks,