Backup a single table with its data from a database in sql server 2008

后端 未结 10 1711
青春惊慌失措
青春惊慌失措 2020-12-02 07:18

I want to get a backup of a single table with its data from a database in SQL Server using a script.

How can I do that?

10条回答
  •  醉酒成梦
    2020-12-02 07:46

    There are many ways you can take back of table.

    1. BCP (BULK COPY PROGRAM)
    2. Generate Table Script with data
    3. Make a copy of table using SELECT INTO, example here
    4. SAVE Table Data Directly in a Flat file
    5. Export Data using SSIS to any destination

提交回复
热议问题