Additional SQL Server features and topics not covered by specific categories
Hi @Harshal Patil ,
Please using below stored procedure to obtain status information about each job (this is actually what Job Activity Monitor uses). Please refer to sp_help_job (Transact-SQL) to understand the values of the columns.
exec msdb.dbo.sp_help_job
Try to use below T-SQL to stop a job. Refer to sp_stop_job (Transact-SQL).
USE msdb
GO
EXEC dbo.sp_stop_job
N'The name of the job'
If the response is helpful, please click "Accept Answer" and upvote it, thank you.