第 4 课:从完整数据库备份执行还原
本课演示如何使用 tsql 语句从上一课所创建的完整数据库备份中执行还原。
执行数据库备份的还原
若要还原完整数据库备份,请使用以下步骤:
连接到 SQL Server Management Studio。
在对象资源管理器中,连接到 SQL Server 2014 实例。
在标准菜单栏上,单击 “新建查询”。
将以下示例复制并粘贴到查询窗口中,并根据需要进行修改。
RESTORE DATABASE AdventureWorks2012 FROM URL = 'https://mystorageaccount.blob.core.windows.net/privatecontainertest/AdventureWorks2012.bak' WITH CREDENTIAL = 'mycredential'; , STATS = 5 - use this to see monitor the progress GO
验证 T-SQL 语句并单击“执行”