May 14, 2008 at 7:44 am
Does anyone knows what it the column run_time with a value of 1 or 0 means in the table msdb..sysjobhistory?
Kind regards,
steve
May 14, 2008 at 8:38 am
BOL search for sysjobhistory will tell you this as well:
http://msdn.microsoft.com/en-us/library/ms174997.aspx
-- Cory
May 15, 2008 at 1:50 am
Owkey, but there's nothings said over a run_time with a value of 0 or 1 :/
May 15, 2008 at 3:11 am
Hi.
Check this link.. u may get the solution
http://www.experts-exchange.com/Microsoft/Development/MS-SQL-Server/Q_21443432.html
Thanks
jaypee
May 15, 2008 at 3:27 am
run_time is an integer and is the time at which a job started. The key thing to remember is that it's an integer not a datetime. So....
A run_time value of:
0 = 00:00:00
1 = 00:00:01
100 = :00:01:00
5000 = 00:50:00
50005 = 05:00:05
and so on....
It wouldn't be difficult to write a function that takes an integer and converts it to a readable time value.
Hope that helps.
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply