This guide will show you how to restore a Microsoft SQL database using T-SQL commands rather than using the wizards in SQL Management Studio. This has the added benefit of being able to be scripted if needed. Restoring a Microsoft SQL database: RESTORE DATABASE [database_name] FROM DISK='c:\path\to\backup\file.bak' Replace ‘database_name’ with the name of the database you want to restore to. Eg: RESTORE DATABASE [testing] FROM DISK='C:\temp\testing.bak' Sample output: Processed 312 pages for database 'testing', file 'Testing' on file 1. Processed…
Read more [...]
Read more [...]