How to empty my destination table before inserting new records in SSIS?

后端 未结 4 1642
清歌不尽
清歌不尽 2021-02-03 23:15

I use SSIS to generate and transform new data for later use in a new system. I have a problem every time I run my SSIS Package, it keeps inserting new records to my destination

4条回答
  •  后悔当初
    2021-02-04 00:07

    One caveat about using Truncate table, it does run better for the reasons stated. However it also requires additional privileges for your SSIS System account. You should be sure that those are available to you in Production, otherwise you will have to use Delete.

    MSDN Reference

提交回复
热议问题