Home > Database > Mysql Tutorial > body text

SQL Server task monitoring script

大家讲道理
Release: 2016-11-12 09:47:55
Original
1256 people have browsed it

BEGIN
 
  
DECLARE @jobstatus
 
TABLE(Job_ID uniqueidentifier, Last_Run_Date int, Last_Run_Time int, Next_Run_Date int,
 
    Next_Run_Time int,Next_Run_Schedule_ID int, Requested_To_Run int,
 
    Request_Source int, Request_Source_ID varchar(100),
 
Running int, Current_Step int, Current_Retry_Attempt int, State int)
 
INSERT INTO @jobstatus
 
EXEC MASTER.dbo.xp_sqlagent_enum_jobs 1,garbage
  
                BEGIN
 
                SELECT DISTINCT CASE
                   WHEN state=1 THEN 'Job is Executing'
                   WHEN state=2 THEN 'Waiting for thread to complete'
                   WHEN state=3 THEN 'Between retries'
                   WHEN state=4 THEN 'Job is Idle'
                   WHEN state=5 THEN 'Job is suspended'
                   WHEN state=7 THEN 'Performing completion actions'
  
                END AS State,sj.name,
 
                CASE WHEN ej.running=1 THEN st.step_id ELSE 0 END AS currentstepid,
                CASE WHEN ej.running=1 THEN st.step_name ELSE 'not executing' END AS currentstepname,
 
                st.command, ej.request_source_id
 
                FROM @jobstatus ej join msdb..sysjobs sj ON sj.job_id=ej.job_id
 
                JOIN msdb..sysjobsteps st ON st.job_id=ej.job_id AND (st.step_id=ej.current_step or ej.current_step=0)
 
                WHERE ej.running+1>1
 
                END
 
END
Copy after login

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!