How to create a .bak
file for selected database table in SQL Server 2008?
I have a TESTDB
database which have more than 15 tables. I want to make .bak
file only for 5 selected tables.
So how can I create that?
How to create a .bak
file for selected database table in SQL Server 2008?
I have a TESTDB
database which have more than 15 tables. I want to make .bak
file only for 5 selected tables.
So how can I create that?
By making .bak
file literally means taking a backup of the Database and Restoring it back. You don't have to do that here in your case.
DTS
will solve it for you. Means you need to use the Export Wizard
. Just follow the below steps.
Step 1: Right Click on the Database
Step 2: Select Task
Step 3: Select Export Data
Step 4: Enter Data Source details
Step 5: Enter Destination details
Step 6: Select the tables you want to recreate.
Thats it.