How can I restore just one table from a database backup in SQL Server?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I don’t believe this is possible.
A better option would be to
Generate Scriptsfrom the first original database, and choose 1 table, andScript Data. Then execute this script on your database (where you wish to restore just 1 table).If you don’t have access to the original database, then restore the backup to a new database, create the
Generate Scripts..script from there, and then remove the new database.