To restart an interrupted restore operation
Important The system administrator restoring the backup must be the only person currently using the database to be restored.
This example restarts an interrupted restore operation.
-- Restore a database backup of the MyNwind database
RESTORE DATABASE MyNwind
FROM MyNwind_1
GO
-- The restore operation halted prematurely.
-- Repeat the original RESTORE statement specifying WITH RESTART
RESTORE DATABASE MyNwind
FROM MyNwind_1
WITH RESTART
GO
Creating and Restoring a Database Backup | RESTORE |
Copying Databases |