Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Convert sysjobhistory run_date and run_time into SQL DATETIME

Status
Not open for further replies.

TJRTech

Programmer
Apr 8, 2002
411
US
SQLAgent stores job history execution in seperate run_date and run_time integer columns, in the format:

run_date = YYYYMMDD
run_time = HHMMSS

And, since these are integers and seperate columns they are a pain to force into a SQL DATETIME, but HERE is one way:

Code:
SELECT RUN_DATE_TIME = convert( datetime,
         convert(varchar, run_date/10000)+'/'+
         convert(varchar, run_date%1000/100)+'/'+
         convert(varchar, run_date%100)+' '+
         convert(varchar, run_time/10000)+':'+
         convert(varchar, run_time%10000/100)+':'+
         convert(varchar, run_time%100)+'.000' )
FROM msdb.dbo.sysjobhistory

Regards,
TR
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top