How to stop a SQL job showing 'In Progress' status?

user3115933 picture user3115933 · May 9, 2018 · Viewed 8.4k times · Source

I am using SQL Server 2014 and I have a job (called ITB) which has been scheduled to run at 4.00am on a daily basis. The SQL job has 11 steps in it. At 09.00 am this morning, I noticed that the job was showing 'In Progress' in the job history. It seems to be stuck at Step 8 of 11.

I have tried to stop the job by right clicking the job name in SSMS but I am getting the following message:

"Stop failed for Job 'ITB' (Microsoft.SqlServer.Smo)

I have also tried running the following T-SQL command in SSMS to stop the job:

USE msdb ;  
GO  

EXEC dbo.sp_stop_job  
N'ITB' ;  
GO  

I am getting the following message is SSMS:

Msg 22022, Level 16, State 1, Line 2
SQLServerAgent Error: Request to stop job ITB (from User sa) refused because the job is not currently running.

What is happening here and how can I deal with this?

Answer

Sameer picture Sameer · May 9, 2018

Restart SQL Server Agent

In Object Explorer, connect to the instance of the Database Engine, right-click SQL Server Agent, and then click Start, Stop, or Restart.

If the User Account Control dialog box appears, click Yes.

When prompted if you want to perform the action, click Yes.