sp_start_job で開始された SQL エージェント ジョブがいつ終了したかを判断する方法はありますか?
5 に答える
この記事では、SQL エージェント ジョブを起動して待機する SP について説明します。
-- output from stored procedure xp_sqlagent_enum_jobs is captured in the following table
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, -- BOOL
request_source INT NOT NULL,
request_source_id sysname COLLATE database_default NULL,
running INT NOT NULL, -- BOOL
current_step INT NOT NULL,
current_retry_attempt INT NOT NULL,
job_state INT NOT NULL)
-- start the job
declare @r as int
exec @r = msdb..sp_start_job @job
-- quit if unable to start
if @r<>0
RAISERROR (N'Could not start job: %s.', 16, 2, @job)
-- start with an initial delay to allow the job to appear in the job list (maybe I am missing something ?)
WAITFOR DELAY '0:0:01';
set @seccount = 1
-- check job run state
insert into @xp_results
execute master.dbo.xp_sqlagent_enum_jobs 1, @job_owner, @job_id
set @running= (SELECT top 1 running from @xp_results)
while @running<>0
begin
WAITFOR DELAY '0:0:01';
set @seccount = @seccount + 1
delete from @xp_results
insert into @xp_results
execute master.dbo.xp_sqlagent_enum_jobs 1, @job_owner, @job_id
set @running= (SELECT top 1 running from @xp_results)
end
-- result: not ok (=1) if still running
if @running <> 0 begin
-- still running
return 0
end
else begin
-- did it finish ok ?
set @run_status = 0
select @run_status=run_status
from msdb.dbo.sysjobhistory
where job_id=@job_id
and cast(run_date as bigint) * 1000000 + run_time >= @start_job
if @run_status=1
return 1 --finished ok
else --error
RAISERROR (N'job %s did not finish successfully.', 16, 2, @job)
end
END TRY
XP_SQLAGENT_ENUM_JOBS
使用できますが、文書化されていません。通常、長時間実行されているジョブを検出するために使用されます。
もちろん、sp_help_jobs
ジョブ履歴テーブルの監視もあります。
sp_help_job @job_name @execution_status = 0
SELECT TOP 1 1 AS FinishedRunning
FROM msdb..sysjobactivity aj
JOIN msdb..sysjobs sj on sj.job_id = aj.job_id
WHERE aj.stop_execution_date IS NOT NULL
AND aj.start_execution_date IS NOT NULL
AND sj.name = 'YourJobNameHere'
AND NOT EXISTS
(
SELECT TOP 1 1
FROM msdb..sysjobactivity New
WHERE New.job_id = aj.job_id
AND new.start_execution_date > aj.start_execution_date
)
私は実際にこれを最近しなければなりませんでした。これが私がそれを実装する方法を考えている方法です。sp_add_job と sp_add_jobstep を使用して一時的なジョブを作成し、@delete_level を 3 に設定しています (実行後は常に削除します)。
ストアド プロシージャのタイトルからわかるように、私はこのアプローチに 100% 賛成しているわけではありません。ただし、機能します。
CREATE PROCEDURE spWorkaround_checkJobExists
@job_id UNIQUEIDENTIFIER
, @thisIteration tinyint
, @maxRecurse tinyint
AS
IF (@thisIteration <= @maxRecurse)
BEGIN
IF EXISTS(
select * FROM msdb.dbo.sysjobs where job_id = @job_id
)
BEGIN
WAITFOR DELAY '00:00:01'
DECLARE @nextIteration int
SET @nextIteration = @thisIteration + 1
EXEC dbo.spWorkaround_checkJobExists @job_id, @nextIteration, @maxRecurse
END
END
もちろん、これが再帰する最大回数があることを確認するためにいくつかのコードを入れたいと思うでしょうが、あなたはアイデアを得るでしょう. パラメーターを渡して、再帰が発生する頻度を制御することもできます。私の場合、10 秒後には結果が無意味になります。
ここで行っていることは、ジョブの実行ステータスを確認するように選択基準を変更することで、実行直後にドロップすることを意図していないジョブ用に変更できます。たとえば、sp_help_job で @job_name または @job_id と @execution_status を渡す= 0。