Skip to content

Instantly share code, notes, and snippets.

@JustinMcNamara74
Last active August 29, 2015 14:20
Show Gist options
  • Save JustinMcNamara74/31ee16050b46ae57471a to your computer and use it in GitHub Desktop.
Save JustinMcNamara74/31ee16050b46ae57471a to your computer and use it in GitHub Desktop.
#MSSQL List all enabled jobs
-- 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