{% include applies-to-md.md %}
This folder contains a script which can be used to automatically enable or disable SQL Server jobs based on the Availability Groups role of their respective database(s).
The script will create one scheduled job, and one alert.
In this page:
The script only supports SQL Server versions 2012 and later, that have SQL Server Agent available (Express editions and Azure SQL Databases are not supported).
To install the script, simply run it on your servers involved in an HA/DR architecture.
You may change the values of the variables at the top of the script, if you want to customize the solution.
See the "Arguments" section below for more info.
If you're in need of understanding the possible logical connections between your scheduled jobs, your databases, and your Availability Groups, you may use the following query:
SET @MasterControlJobName = N'AlwaysOn: Master Control Job'
sets the name to be used for the master control job.
SET @AlertName = N'AlwaysOn: Role Changes'
sets the name to be used for the alert triggered by role change events.
{% include include-xml-argument-md.md %}
Only members of the sysadmin
fixed server role can run this script.
-
Your T-SQL job steps should be set to run on their destined databases. Don't use any "USE" commands or 3-part-names while setting the database context to "master" or something like that. What you specify as the "target" database in the job step - that's what the script will be using for its logic.
-
If there is a disconnect between a job step's configured database context, and its actual intended database target, then you can use the
dbname
optional attribute to force-check a specific database for a given criteria of jobs. -
If you're using special configurations at the step level, keep in mind that it's enough for just one step to be enabled, in order for the script to enable the whole job. If you have more steps in such jobs, consider the possibility that they might be executed not when you necessarily intend them to. You can use something like the
sys.fn_hadr_is_primary_replica
system function to check for a database's role, or query from thesys.dm_hadr_availability_replica_states
system view. -
The scripts will automatically detect whether a T-SQL step's context database is accessible or not. For example, if the database is a non-readable SECONDARY. If a database is found to be non-accessible, that would override any special configurations you may have had for that step. However, if another step within the same job should be enabled, then that would override the override (as mentioned above, it's enough for one step to be enabled in order to enable the whole job). If you have such use cases, you should properly configure your job step outcomes to take this into consideration (for example, set the "on failure action" to go to another step instead of failing the job).
-
Generally, it would be best to avoid creating jobs that have one step run on a database in Availability Group A, and another step run on a database in Availability Group B. Otherwise, you'll risk a scenario where group A might be PRIMARY on the server, while group B is SECONDARY, and your job could potentially fail! (unless the server is a readable secondary and your job step is only doing reads from the database, and/or you have appropriate AG role checks in place, and/or you have appropriate settings for the job step failure outcome).
The following example demonstrates a combination of several use cases:
SET @MasterControlJobName = N'AlwaysOn: Master Control Job'
SET @AlertName = N'AlwaysOn: Role Changes'
SET @SpecialConfigurations = N'<config>
<item type="job" enablewhen="secondary">Contoso %</item>
<item type="job" enablewhen="both">AdventureWorks Validation Checks</item>
<item type="step" enablewhen="secondary">Generate BI Report</item>
<item type="category" enablewhen="ignore">SQL Sentry Jobs</item>
<item type="category" enablewhen="both">Database Maintenance</item>
<item type="category" enablewhen="primary" dbname="ReportServer">Report Server</item>
<item type="job" enablewhen="secondary" dbname="AdventureWorksDWH">SSIS AdventureWorksDWH Send Reports</item>
<item type="job" enablewhen="primary" dbname="WideWorldImportersLT">WideWorldImporters Delete Old Data</item>
<item type="job" enablewhen="never" dbname="audit">Do not run - %</item>
</config>'
The example above demonstrates the following use-cases:
- All jobs with names starting with "Contoso " should only be enabled on the SECONDARY.
- The job named "AdventureWorks Validation Checks" should be enabled on both PRIMARY and SECONDARY servers.
- Any job with a step named "Generate BI Report" should be enabled on the SECONDARY.
- Any job with the "SQL Sentry Jobs" category will be ignored by the script, regardless of its status.
- Any job with the "Database Maintenance" category should be enabled on both PRIMARY and SECONDARY servers.
- Any job with the "Report Server" category should be enabled only when the ReportServer database is PRIMARY.
- The job named "SSIS AdventureWorksDWH Send Reports" should be enabled on the SECONDARY only.
- The job named "WideWorldImporters Delete Old Data" should be enabled on the PRIMARY only.
- Any job with a name starting with "Do not run - " should always remain disabled regardless of HA/DR role.