如何重新启动中断的还原操作 (Transact-SQL)
本主题说明如何重新启动中断的还原操作。
重新启动中断的还原操作
再次执行中断的 RESTORE 语句,同时指定:
- 原 RESTORE 语句中使用的相同子句。
- RESTART 子句。
示例
以下示例将重新启动中断的还原操作。
-- Restore a full database backup of the AdventureWorks database.
RESTORE DATABASE AdventureWorks
FROM DISK = 'C:\AdventureWorks.bck'
GO
-- The restore operation halted prematurely.
-- Repeat the original RESTORE statement specifying WITH RESTART.
RESTORE DATABASE AdventureWorks
FROM DISK = 'C:\AdventureWorks.bck'
WITH RESTART
GO
请参阅
概念
执行数据库完整还原(完整恢复模式)
执行数据库完整还原(简单恢复模式)