Is there an easier way to restore data to single table in a sql server table rather taking down the database and restoring the entire database?
thank in advance
|
Is there an easier way to restore data to single table in a sql server table rather taking down the database and restoring the entire database? thank in advance
| |||
|
feedback
|
|
There is a third party product, LiteSpeed for SQL Server, which offers this capability of object and even row-level recovery. | |||
feedback
|
|
You can restore the database from the backup file to another database name on the same server, or different server, then copy the data over. If the database was Northwind, something like:
StackOverflow: How do I restore a single table from a SQL Server 2005 backup? | ||||
|
feedback
|
|
SQL Server cannot do table-level backups or restores, although you can backup and restore files within a database if you want to You're best bet is probably to restore the entire backup as a temporary database, and then copy the data you need over to the main database. Tools like RedGate's SQL Data Compare are good for synchronising data. | |||
|
feedback
|