Exercise - Configure backups for Azure SQL Database
Although the default Azure SQL Database configuration includes automated backups, most organizations modify the default setup to tailor it to their needs.
Now that you've planned a comprehensive backup strategy for Azure SQL Database and your company's ERP system, it's time to implement it.
Let's create a database in Azure and then configure backups. Set the retention to 28 days to ensure that you have four weeks of backups retained in accordance with your policy. Then, add some content to the database.
Create a SQL Database server and database
Let's use the Azure CLI to create a SQL Database server and a database.
Run the following commands in Azure Cloud Shell to set up some variables for creation of the SQL Database server:
$serverName = "erpserver-$(Get-Random)" $location = $(Get-AzResourceGroup -ResourceGroupName <rgn>[sandbox resource group name]</rgn>).location $sqlAdmin = Get-Credential -credential dbadmin
This step creates a server name with a random number at the end to ensure that it's globally unique. The server name is referred to as
erpserver-NNNN
through the exercises, but replace this name with the name of the server that you generate here.This step also sets the location for your server to the location of the resource group. Finally, it sets the credentials used to access the database server. When the command prompts you, enter a complex password of your choice.
Run the
New-AzSqlServer
command to create a SQL Database server to store the database:New-AzSqlServer ` -ResourceGroupName <rgn>[sandbox resource group name]</rgn> ` -Location $location ` -ServerName $serverName ` -SqlAdministratorCredentials $sqlAdmin
Run the
New-AzSqlDatabase
command to create a database:New-AzSqlDatabase ` -ResourceGroupName <rgn>[sandbox resource group name]</rgn> ` -ServerName $serverName ` -DatabaseName sql-erp-db
Configure the database retention policy
In the Azure portal, you can examine the default retention policy and adapt it to your needs.
On the Azure portal menu or from the Home page, select All resources, and then select the erpserver-NNNN database server that you created. Your database (SQL) server pane appears.
In the middle menu pane, under Data management, select Backups. The Backups pane for your database server appears.
On the Retention policies tab, select the sql-erp-db database, and in the top menu bar, select Configure policies. The Configure policies pane appears.
Move the Point-in-time-restore slider bar to 28.
Select Apply, and then select Yes to confirm your selection.
Allow network access to the database server
By default, Azure SQL Database blocks network access to the server. Let's enable both your IP address and Azure services to access the server so that we can run queries from Cloud Shell and the Azure portal. By adding your IP address, you can also connect directly from your local device.
In the middle menu pane, under Security, select Networking. The Networking pane appears for your database server.
In the Firewall rules section, select Add your client IPv4 address.
In the Exceptions section, select the checkbox for Allow Azure services and resources to access this server.
Select Save.
Add data to the database
Now, let's add a table and a sample record to the database. It's helpful to have some data in the database to validate that our backups and restores work later in the module.
In the middle menu pane, under Settings, select SQL databases, then select sql-erp-db. Your database server pane reappears.
In the left menu pane, select Query editor (preview), and then sign in with the dbadmin credentials and the password that you specified for this account.
To create a table, in the Query 1 window, enter the following SQL command, then select Run.
CREATE TABLE Person ( PersonId INT IDENTITY PRIMARY KEY, FirstName NVARCHAR(50) NOT NULL, LastName NVARCHAR(50) NOT NULL, DateOfBirth DATE NOT NULL )
To add a record, in the top menu bar, select New Query. In the Query 2 window, enter the following SQL command, and select Run.
INSERT INTO PERSON (FirstName, LastName, DateOfBirth) VALUES ('Lucas', 'Ball', '1987-11-03');
To query the database, select New Query. In the Query 3 window, enter the following SQL command, and select Run.
SELECT * FROM dbo.Person
The Results window displays the record for Lucas Ball.
You now have an Azure SQL database populated with data, and you've set up a retention policy to ensure that you have four weeks of backups immediately available for restore.
Need help? See our troubleshooting guide or provide specific feedback by reporting an issue.