0

I have a database from which I am pulling rows from, manipulating the data a bit and then putting into another table. Every time I run the package, it doesnt remove any data from the destination and thus grows by X number of rows each time.

Is there any way that I can clear the destination before adding the new rows?

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Toadfish
  • 87
  • 1
  • 1
  • 5

1 Answers1

0

YOu can run a truncate statement to clear all records from the table.

TRUNCATE TABLE YourTableName

Declan_K
  • 6,726
  • 2
  • 19
  • 30