Created
August 31, 2017 11:28
-
-
Save tyler6699/47f6848a46370e8ac34fcb07dc62ed91 to your computer and use it in GitHub Desktop.
SQL Jobs Query
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT j.name JobName | |
, h.step_name StepName | |
, CAST(STR(h.run_date, 8, 0) AS DATETIME) | |
+ CAST(STUFF(STUFF(RIGHT('000000' + CAST (h.run_time AS VARCHAR(6)), 6), | |
5, 0, ':'), 3, 0, ':') AS DATETIME) AS StartDatetime | |
, DATEADD(SECOND, | |
( ( h.run_duration / 1000000 ) * 86400 ) | |
+ ( ( ( h.run_duration - ( ( h.run_duration / 1000000 ) | |
* 1000000 ) ) / 10000 ) * 3600 ) | |
+ ( ( ( h.run_duration - ( ( h.run_duration / 10000 ) * 10000 ) ) | |
/ 100 ) * 60 ) + ( h.run_duration - ( h.run_duration | |
/ 100 ) * 100 ), | |
CAST(STR(h.run_date, 8, 0) AS DATETIME) | |
+ CAST(STUFF(STUFF(RIGHT('000000' | |
+ CAST (h.run_time AS VARCHAR(6)), 6), | |
5, 0, ':'), 3, 0, ':') AS DATETIME)) AS EndDatetime | |
, STUFF(STUFF(REPLACE(STR(run_duration, 6, 0), ' ', '0'), 3, 0, ':'), 6, | |
0, ':') AS run_duration_formatted | |
, ( ( h.run_duration / 1000000 ) * 86400 ) + ( ( ( h.run_duration | |
- ( ( h.run_duration | |
/ 1000000 ) | |
* 1000000 ) ) | |
/ 10000 ) * 3600 ) | |
+ ( ( ( h.run_duration - ( ( h.run_duration / 10000 ) * 10000 ) ) | |
/ 100 ) * 60 ) + ( h.run_duration - ( h.run_duration / 100 ) | |
* 100 ) AS RunDurationInSeconds | |
, CASE h.run_status | |
WHEN 0 THEN 'failed' | |
WHEN 1 THEN 'Succeded' | |
WHEN 2 THEN 'Retry' | |
WHEN 3 THEN 'Cancelled' | |
WHEN 4 THEN 'In Progress' | |
END AS ExecutionStatus | |
, h.message MessageGenerated | |
FROM sysjobhistory h | |
INNER JOIN sysjobs j | |
ON j.job_id = h.job_id | |
ORDER BY h.run_date DESC | |
, h.run_time desc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment