Question:
I want to create and schedule my Spitfire SQL jobs manually, but the wizard does not make it easy to create a category for these jobs. How do I add one?
Answer:
In Enterprise Manager:
- Expand your server.
- Expand Management.
- Expand SQL Server Agent.
- Select the Jobs collection.
- Right click on the Jobs collection.
- Select all tasks.
- Select Manage Job Categories.
- Click the Add button.
Use Query Analyzer
IF (SELECT COUNT(*) FROM msdb.dbo.syscategories WHERE name = N‘Spitfire‘) < 1
EXECUTE msdb.dbo.sp_add_category @name = N‘Spitfire‘
Additional Comments:
We strongly encourage the use of a job category or categories to organize Spitfire Agent Jobs.
KBA-01025; Last updated: October 10, 2016 at 14:00 pm;
Keywords: SQL server agent configuration