Last active
August 29, 2015 14:20
-
-
Save JustinMcNamara74/31ee16050b46ae57471a to your computer and use it in GitHub Desktop.
#MSSQL List all enabled jobs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- List all enabled jobs | |
USE [msdb] | |
select name | |
,description | |
,enabled | |
,job_id | |
,date_created | |
,date_modified | |
from dbo.sysjobs | |
where enabled = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment