Table-level backup

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

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

相关标签:
16条回答
  • 2020-12-02 07:27

    A free app named SqlTableZip will get the job done. Basically, you write any query (which, of course can also be [select * from table]) and the app creates a compressed file with all the data, which can be restored later.

    Link: http://www.doccolabs.com/products_sqltablezip.html

    0 讨论(0)
  • 2020-12-02 07:30

    Here are the steps you need. Step5 is important if you want the data. Step 2 is where you can select individual tables.

    EDIT stack's version isn't quite readable... here's a full-size image http://i.imgur.com/y6ZCL.jpg

    Here are the steps from John Sansom's answer

    0 讨论(0)
  • 2020-12-02 07:30

    Use SQL Server Import and Export Wizard.

    1. ssms
    2. Open the Database Engine
    3. Alt. click the database containing table to Export
    4. Select "Tasks"
    5. Select "Export Data..."
    6. Follow the Wizard
    0 讨论(0)
  • 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.

    0 讨论(0)
提交回复
热议问题