| title | sp_add_category (Transact-SQL) | ||
|---|---|---|---|
| description | Adds the specified category of jobs, alerts, or operators to the server. | ||
| author | MashaMSFT | ||
| ms.author | mathoma | ||
| ms.reviewer | randolphwest | ||
| ms.date | 06/23/2025 | ||
| ms.service | sql | ||
| ms.subservice | system-objects | ||
| ms.topic | reference | ||
| f1_keywords |
|
||
| helpviewer_keywords |
|
||
| dev_langs |
|
[!INCLUDE SQL Server - ASDBMI]
Adds the specified category of jobs, alerts, or operators to the server. For alternative method, see Create a Job Category.
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions
Important
On Azure SQL Managed Instance, most, but not all SQL Server Agent features are currently supported. See Azure SQL Managed Instance T-SQL differences from SQL Server for details.
sp_add_category
[ [ @class = ] 'class' ]
[ , [ @type = ] 'type' ]
[ , [ @name = ] 'name' ]
[ ; ]
The class of the category to be added. @class is varchar(8) with a default value of JOB, and can be one of these values.
| Value | Description |
|---|---|
JOB |
Adds a job category. |
ALERT |
Adds an alert category. |
OPERATOR |
Adds an operator category. |
The type of category to be added. @type is varchar(12), with a default value of LOCAL, and can be one of these values.
| Value | Description |
|---|---|
LOCAL |
A local job category. |
MULTI-SERVER |
A multiserver job category. |
NONE |
A category for a class other than JOB. |
The name of the category to be added. The name must be unique within the specified class. @name is sysname, with no default.
0 (success) or 1 (failure).
None.
sp_add_category must be run from the msdb database.
[!INCLUDE msdb-execute-permissions]
The following example creates a local job category named AdminJobs.
USE msdb;
GO
EXECUTE dbo.sp_add_category
@class = N'JOB',
@type = N'LOCAL',
@name = N'AdminJobs';
GO