微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何判断Sql agent job 是否执行完成

  编程之家 jb51.cc 通过创建新一个存储过程,在内部循环检查job的状态,当发现其执行成功之后,返回0。 

以下为引用的内容
Create PROCEDURE [dbo].[Proc_GetStatus]
AS
BEGIN
SET NOCOUNT ON

DECLARE @xp_results TABLE
(job_id UNIQUEIDENTIFIER NOT NULL,
last_run_date INT NOT NULL,
last_run_time INT NOT NULL,
next_run_date INT NOT NULL,
next_run_time INT NOT NULL,
next_run_schedule_id INT NOT NULL,
requested_to_run INT NOT NULL,
request_source INT NOT NULL,
request_source_id sysname COLLATE database_default NULL,
running INT NOT NULL,
current_step INT NOT NULL,
current_retry_attempt INT NOT NULL,
job_state INT NOT NULL)

DECLARE @job_owner sysname SET @job_owner = SUSER_SNAME()
INSERT INTO @xp_results
EXECUTE master.dbo.xp_sqlagent_enum_jobs 1,@job_owner

DECLARE @IsJobRunning BIT

SELECT @IsJobRunning = x.running
FROM @xp_results x
INNER JOIN msdb.dbo.sysjobs sj ON sj.job_id = x.job_id
WHERE sj.name = N'utilization Gather And Process' --Insert your job's name between the single quotes

while @IsJobRunning=1
begin
WAITFOR DELAY '00:00:20'
INSERT INTO @xp_results
EXECUTE master.dbo.xp_sqlagent_enum_jobs 1,@job_owner
SELECT @IsJobRunning = x.running
FROM @xp_results x
INNER JOIN msdb.dbo.sysjobs sj ON sj.job_id = x.job_id
WHERE sj.name = N'utilization Gather And Process' --Insert your job's name between the single quotes

end

return 0

End

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐