SQL Agen Scheduler - Updated

This commit is contained in:
Neeraj Kumar
2025-10-20 07:54:46 -04:00
parent 42a3da46ab
commit f8c32748c5
136 changed files with 5836 additions and 1216 deletions

View File

@ -0,0 +1,21 @@
USE ProdDUTASJobSchedule;
GO
DECLARE @Runday DATE = DATEADD(day, +0, CAST(GETDATE() AS DATE)); -- -1 for Yesterday
SELECT
jeh.ExecutionID,
jeh.JobName,
jeh.RunDate,
jc.ScheduledStartTime,
jeh.ActualStartTime,
jeh.ActualEndTime,
jeh.Status,
jeh.ErrorMessage,
jeh.OverrideFlag,
jeh.OverrideBy
FROM dbo.JobExecutionHistory jeh
INNER JOIN dbo.JobControl jc
ON jeh.JobName = jc.JobName
WHERE jeh.RunDate = @Runday
ORDER BY jc.ScheduledStartTime, jeh.ActualStartTime;