|
Execute the following
script to demonstrate the restore command variations for checking the content of a database backup file:
USE master;
restore headeronly from disk='F:\data\backup\inventorydb.bak'
restore filelistonly from disk='F:\data\backup\inventorydb.bak'
restore labelonly from disk='F:\data\backup\inventorydb.bak'
restore verifyonly from disk='F:\data\backup\inventorydb.bak'
|