AlertCategories Collection
后续版本的 Microsoft SQL Server 将删除该功能。 请避免在新的开发工作中使用该功能,并着手修改当前还在使用该功能的应用程序。
The AlertCategories collection contains Category objects that reference SQL Server Agent alert categories.
注释
With the AlertCategories collection, you can create and maintain names that group Microsoft SQL Server alerts.
The AlertCategories collection contains, at a minimum, a Category object named [Uncategorized] and one named Replication.
To create an alert category
Create a Category object.
Set the Name property of the Category object. Alert category names are unique on a server running SQL Server.
Add the Category object to the AlertCategories collection of a connected JobServer object.
To remove an alert category
Use the Remove method of the AlertCategories collection of a connected JobServer object. Indicate the targeted alert category using the category name or the ordinal location in the collection, as in:
oJobServer.AlertCategories.Remove("Northwind")
注意 |
---|
Alerts are re-categorized as necessary when an alert category is removed. Any alerts previously exhibiting the removed category exhibit the category [Uncategorized] after the Remove method completes. |