Book Image

SQL Server on Azure Virtual Machines

By : Joey D'Antoni, Louis Davidson, Allan Hirt, John Martin, Anthony Nocentino, Tim Radney, Randolph West
Book Image

SQL Server on Azure Virtual Machines

By: Joey D'Antoni, Louis Davidson, Allan Hirt, John Martin, Anthony Nocentino, Tim Radney, Randolph West

Overview of this book

Deploying SQL Server on Azure virtual machines allows you to work on full versions of SQL Server in the cloud without having to maintain on-premises hardware. The book begins by introducing you to the SQL portfolio in Azure and takes you through SQL Server IaaS scenarios, before explaining the factors that you need to consider while choosing an OS for SQL Server in Azure VMs. As you progress through the book, you'll explore different VM options and deployment choices for IaaS and understand platform availability, migration tools, and best practices in Azure. In later chapters, you'll learn how to configure storage to achieve optimized performance. Finally, you'll get to grips with the concept of Azure Hybrid Benefit and find out how you can use it to maximize the value of your existing on-premises SQL Server. By the end of this book, you'll be proficient in administering SQL Server on Microsoft Azure and leveraging the tools required for its deployment.
Table of Contents (10 chapters)
8
Index

Backing up databases to a URL

Starting with SQL Server 2012 with Service Pack 1 CU 2, you can back up your SQL Server database to an Azure Storage account, also known as Backup to URL. Since SQL Server 2016, you can even back up your database to a URL simultaneously with a regular on-premises backup. This allows you to have both a local and secure offsite backup of your databases from one backup command.

Note

Backup to URL can be executed from the SQL Server Management Studio (SSMS) backup wizard, T-SQL, SQL Server Management Objects (SMO), and PowerShell cmdlets, including third-party PowerShell modules. For more about this feature, visit Microsoft Docs6.

Backup to URL gives you the peace of mind that when disaster strikes, you will be able to access your backups almost immediately. With a solid disaster recovery plan, you can have a standby Azure VM restoring those backups on a regular schedule (see the As a backup-restore target section later in this chapter). You can even...