Reputation: 16049
I want to restore new database in my Sql server but need one table from previous database.So I need to create a backup file of specific table so I can restore it in newer version of database.
Upvotes: 2
Views: 8348
Reputation: 783
You can generate Scripts for Schema and Data for that particular table. There are many tools available. You can use SSMS for that. After you have the table schema and the data you can run that script on the new database.
Upvotes: 2
Reputation: 179
To back up a database:
These are the most important points, the other ones are very intuitive. For more details about here's a link that explain step by step how to create a backup (.bak) for your database.
https://msdn.microsoft.com/en-us/library/ms187510.aspx
Upvotes: 1