Automating Azure SQL DB index and statistics maintenance using Azure Automation
Published Mar 13 2019 06:52 PM 94.9K Views

First published on MSDN on Jan 15, 2018
To provide complete solution to maintain you Azure SQL DB statistics and maintenance we provide our maintenance script here


In this article, we will explain step by step how to automate this maintenance on Azure (You can also use that to automate your own T-SQL tasks)


General steps:


    1. Create Azure automation account

 

    1. Import SQLServer module

 

    1. Add Credentials to access SQL DB

 

    1. Add a runbook to run the maintenance

 

    1. Schedule task



Step by step instructions:


    1. Create new automation account

 

    1. Login to your Azure portal and click "New" (the green plus sign)

 


    1. Type "automation" in the search box, and choose automation.



      Figure 1 – new automation account

 

    1. Click "create"

 


    1. Fill the form, choose a name for your automation account, and choose in which resource group it will be placed.

      make sure you choose "YES" for the Create Azure Run As account.




      Figure 2 – add automation account form.

 


    1. Click "create" and wait for the account to be created. The new automation configuration blade will be opened once the provision completed.

 

    1. Import SQLServer module

 


    1. Click on "Modules" at the left options panel, and then click on "Browse Gallery" and search for "SQLServer"



      Figure 3 – add module

 


    1. Choose "SqlServer" by matteot_msft



      Figure 4 – module name

 

    1. Then click on "import" and the "OK"

 


    1. Wait for the import to complete

 

    1. Add Credentials to access SQL DB

 


    1. This will use secure way to hold login name and password that will be used to access Azure SQL DB

      You can skip this and use it as clear text if you like to use clear text skip to the next step.

 


    1. Under "Shared Resources" click on credentials



      Figure 5 – Add new credential object

 

    1. Then click on "Add Credential"

 

    1. Type "SQLLogin" as the name of the credential.

 

    1. In the username field type the SQL Login that will be used for maintenance and its password.

 


    1. Click "Create"

 

    1. Add a runbook to run the maintenance

 


    1. Click on "runbooks" at the left panel and then click "add a runbook"



      Figure 6 – Add a runbook

 


    1. Choose "create a new runbook" and then give it a name and choose "Powershell" as the type of the runbook and then click on "create"



      Figure 7 – add new PowerShell runbook

 


    1. Copy and paste the following row to the new runbook.

      Make sure you change your database properties.

       


      $AzureSQLServerName = "<ServerName>" 
      $AzureSQLDatabaseName = "<DatabaseName>" 
      
      $AzureSQLServerName = $AzureSQLServerName + ".database.windows.net" 
      $Cred = Get-AutomationPSCredential -Name "SQLLogin" 
      $SQLOutput = $(Invoke-Sqlcmd -ServerInstance $AzureSQLServerName -Username $Cred.UserName -Password $Cred.GetNetworkCredential().Password -Database $AzureSQLDatabaseName -Query "exec [dbo].[AzureSQLMaintenance] @Operation='all' ,@LogToTable=1" -QueryTimeout 65535 -ConnectionTimeout 60 -Verbose) 4>&1 
      
      Write-Output $SQLOutput​




      TIP : to redirect the verbose output to the runbook log we use the technique as described here

 

    1. Click on Publish and confirm.

 

    1. Schedule task

 


    1. Click on Schedules



      Figure 8 – Schedules

 

    1. Click on "Add a schedule" and follow the instructions to choose existing schedule or create a new schedule.

 


    1. Choose a time when the application is in the idlest figure, as running the maintenance might impact on performance while it's executing.



      Figure 9 – Create new Schedule



Monitoring

you can monitor the success of the job by reviewing the Automation overview page



Figure 10 – Job Overview.

then you can click on each category and drill down...



Figure 11 – Job executions

then you can click on a specific execution and get more details about it including the output of the script



Figure 12 – Details of job execution and output information.

I hope you enjoy this post, please share any thoughts on a comment here in this post.

Notes:

    • Automation account has a limit of 500 minutes of execution time per subscription per month on its free tier. More information about automation account limits can be found here



More information:

Getting Started with Azure Automation

Create a standalone Azure Automation account

My first PowerShell runbook

57 Comments
Version history
Last update:
‎Sep 08 2019 03:45 AM
Updated by: