レッスン 3:Azure Blob Storage サービスに対するデータベースの完全バックアップの書き込み
このレッスンでは、tsql ステートメントを使用して、Azure Blob Storage サービスへの完全なデータベース バックアップを実行する方法を示します。
Azure Blob Storage サービスへのデータベースの完全バックアップの実行
データベースの完全バックアップを実行するには、次の手順を実行します。
SQL Server Management Studio に接続します。
オブジェクト エクスプローラーで、SQL Server 2014 のインスタンスに接続します。
[標準] メニュー バーの [新しいクエリ]をクリックします。
次の例をコピーしてクエリ ウィンドウに貼り付け、必要に応じて変更して、 [実行]をクリックします。
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
オブジェクト エクスプローラーで、Azure ストレージに接続します。 コンテナーと、新しく作成したバックアップ ファイルを参照して指定します。