Listing All Jobs Running in SQL Server

Listing All Jobs Running in SQL Server
Listing All Jobs Running in SQL Server

Hello everyone. In this article, I will provide information about listing all running jobs in SQL Server.

In certain situations, you might want to list all the running jobs in SQL Server.

You can easily perform this operation with the help of the code below:

SELECT database_name,
       notify_level_email,
       name,
       enabled,
       description,
       step_name,
       command
FROM msdb.dbo.sysjobs job
    INNER JOIN msdb.dbo.sysjobsteps steps
        ON job.job_id = steps.job_id
WHERE job.enabled = 1;

When you execute the above code, you will see a result similar to the following:

Listing All Jobs Running in SQL Server

As you can see, all jobs have been listed.

Wishing everyone success and ease in their professional and personal lives.

15 Views

Yavuz Selim Kart

I try to explain what I know in software and database. I am still improving myself by doing research on many programming languages. Apart from these, I am also interested in Graphic Design and Wordpress. I also have knowledge about SEO and Social media management. In short, I am a determined person who likes to work hard.

You may also like...

Don`t copy text!