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
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号