Reputation: 2065
I have source server and destination server, i have insert the data from source to destination, but before that i have to delete the records if any in destination - (DTS)
Upvotes: 0
Views: 775
Reputation: 795
If you want to remove whole existing table than create sql task and write :
drop table (tablename)
If you want to remove only data inside existing table than create sql task and write :
truncate table (tablename)
Upvotes: 1