To restart an interrupted backup operation
This example restarts an interrupted database backup operation.
-- Create a database backup of the MyNwind database
BACKUP DATABASE MyNwind
TO MyNwind_1
-- The backup operation halts due to power outage.
-- Repeat the original BACKUP statement specifying WITH RESTART
BACKUP DATABASE MyNwind
TO MyNwind_1
WITH RESTART
BACKUP | Creating and Restoring a Database Backup |