第 4 課:從完整資料庫備份執行還原
這一課將示範如何使用 tsql 陳述式,從上一課建立的完整資料庫備份執行還原。
執行資料庫備份的還原
若要還原完整資料庫備份,請使用下列步驟:
連接到 SQL Server Management Studio。
在 [物件總管] 中,連接到 SQL Server 2012 的執行個體。
在 [標準] 功能表列上,按一下 [新增查詢]。
將下列範例複製並貼入查詢視窗中,並視需要修改。
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 陳述式,然後按一下 [執行]。
如需資料庫還原的其他 tsql 和 C# 程式碼範例,請參閱<範例>。