Exercise - Configure backups for Azure SQL Database

Completed

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.

  1. 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.

  2. 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
    
  3. 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.

  1. 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.

  2. In the middle menu pane, under Data management, select Backups. The Backups pane for your database server appears.

  3. 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.

  4. Move the Point-in-time-restore slider bar to 28.

    Screenshot of the Azure portal, showing the database restore options for point-in-time restore.

  5. 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.

  1. In the middle menu pane, under Security, select Networking. The Networking pane appears for your database server.

  2. In the Firewall rules section, select Add your client IPv4 address.

  3. In the Exceptions section, select the checkbox for Allow Azure services and resources to access this server.

    Screenshot of Add a client IP address rule with a callout highlighting Allow access to Azure services option and the Save button.

  4. 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.

  1. In the middle menu pane, under Settings, select SQL databases, then select sql-erp-db. Your database server pane reappears.

  2. 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.

  3. 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
    )
    

    Screenshot of the query editor with T-SQL to create a new table in the sql-erp-db database. A callout highlights the run button.

  4. 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');
    

    Screenshot of the query editor with T-SQL to insert a record into the Person table of the sql-erp-db database. A callout highlights the run button.

  5. 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.

    Screenshot of the query editor with T-SQL to query the person table in the sql-erp-db database. A callout highlights the run button.

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.