加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MsSql教程 > 正文

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

发布时间:2020-12-12 12:32:40 所属栏目:MsSql教程 来源:网络整理
导读:编程之家 jb51.cc 通过创建新一个存储过程,在内部循环检查job的状态,当发现其执行成功之后,返回0。 以下为引用的内容: Create PROCEDURE [dbo].[Proc_GetStatus] AS BEGIN SET NOCOUNT ON DECLARE @xp_results TABLE (job_id UNIQUEIDENTIFIER NOT NULL,
以下为引用的内容:
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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

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

    推荐文章
      热点阅读