Find list of all the jobs currently running on server

Get a list of SQL Server Agent Jobs



--On each server, you can query the sysjobs table in the msdb. For instance:

SELECT job_id, [name] FROM msdb.dbo.sysjobs;
-- List of all the jobs currently running on server
SELECT
job
.job_id,
notify_level_email
,
name
,
enabled
,
description
,
step_name
,
command
,
server
,
database_name
FROM
msdb
.dbo.sysjobs job
INNER JOIN
msdb
.dbo.sysjobsteps steps
ON
job
.job_id = steps.job_id
WHERE
job
.enabled = 1 -- remove this if you wish to return all jobs

--Here is my contribution - also gets the category name and filters out the report server jobs.

SELECT  sysjobs.name 'Job Name',
syscategories.name 'Category',
CASE [description]
WHEN 'No Description available.' THEN ''
ELSE [description]
END AS 'Description'
FROM msdb.dbo.sysjobs
INNER JOIN msdb.dbo.syscategories ON
msdb.dbo.sysjobs.category_id = msdb.dbo.syscategories.category_id
WHERE syscategories.name <> 'Report Server'
ORDER BY sysjobs.name