共用方式為


第 3 課:將完整資料庫備份寫入 Windows Azure Blob 儲存體服務

這一課將示範如何使用 tsql 陳述式來執行 Windows Azure Blob 儲存體服務的完整資料庫備份。

執行 Windows Azure Blob 儲存體服務的完整資料庫備份

若要建立完整資料庫備份,請使用下列步驟:

  1. 連接到 SQL Server Management Studio。

  2. [物件總管] 中,連接到 SQL Server 2012 的執行個體。

  3. 在 [標準] 功能表列上,按一下 [新增查詢]

  4. 將下列範例複製並貼入查詢視窗中、視需要修改,然後按一下 [執行]

    BACKUP DATABASE[AdventureWorks2012] 
    TO URL = 'https://mystorageaccount.blob.core.windows.net/privatecontainertest/AdventureWorks2012.bak' 
    /* URL includes the endpoint for the BLOB service, followed by the container name, and the name of the backup file*/ 
    WITH CREDENTIAL = 'mycredential';
    /* name of the credential you created in the previous step */ 
    GO 
    
  5. 在 [物件總管] 中,連接到 Azure 儲存體。 瀏覽並尋找容器以及新建立的備份檔案。

如需資料庫備份的其他 tsql 和 C# 程式碼範例,請參閱<範例>。

下一課

第 4 課:從完整資料庫備份執行還原.