December 2015
Intermediate to advanced
760 pages
14h 31m
English
This recipe walks you through how to restore a database to a local instance from a backup stored in Azure.
For this recipe, you need to have already performed a backup to Azure Blob storage. If you haven't already done so, you can refer to the recipe Backing up database to Azure Blob storage to prepare your environment.
These are the steps to change the recovery model:
SQLPS module as follows:#import SQL Server module Import-Module SQLPS -DisableNameChecking
$AzureStorageAccount = "replaceThisWithAzureStorageAccount" $credentialName = "AzureCredential" #replace values specific to your Azure account ...
Read now
Unlock full access