Table-level backup

前端 未结 16 1574
孤城傲影
孤城傲影 2020-12-02 06:37

How to take table-level backup (dump) in MS SQL Server 2005/2008?

16条回答
  •  北海茫月
    2020-12-02 07:31

    I don't know, whether it will match the problem described here. I had to take a table's incremental backup! (Only new inserted data should be copied). I used to design a DTS package where.

    1. I fetch new records (on the basis of a 'status' column) and transferred the data to destination. (Through 'Transform Data Task')

    2. Then I just updated the 'status' column. (Through 'Execute SQL Task')

    I had to fix the 'workflow' properly.

提交回复
热议问题