A job running on our SQL server failed. We are running MS SQL server 2005. While investigating, the following question came up: When was this process initiated on the server? Is there any query I can run that will give me this information?

link|improve this question

feedback

3 Answers

up vote 0 down vote accepted

USE msdb SELECT * FROM dbo.sysjobs_view

link|improve this answer
Msg 208, Level 16, State 1, Line 1 Invalid object name 'dbo.sysjobs_view'. – KM. Sep 24 '09 at 13:15
Check permissions/server version – Jim Sep 24 '09 at 13:22
I executed the query and i got the details thank you very much for your help. – srihari Sep 24 '09 at 13:30
@Jim, I'm running as "sa" on SQL Server 2005. However, I just looked at the FROM portion of your answer and took the table name, completely missing the USE msdb so the table did not exist in my current db. I prefer writing the query as SELECT * FROM msdb.dbo.sysjobs_view and not using a USE. What column contains the "start time of the SQL process"? – KM. Sep 24 '09 at 13:54
Hi KM, To be fair I read the question as "When was the job created on the server?" rather than "When did it run?" – Jim Sep 24 '09 at 14:32
show 1 more comment
feedback

This should give you what you need

SELECT 
    Jobs.name, 
    StartTime = CONVERT 
    	( 
    		DATETIME, 
    		RTRIM(run_date) 
    		) 
    		+  
    		( 
    		run_time * 9 
    		+ run_time % 10000 * 6 
    		+ run_time % 100 * 10 
    	) / 216e4 
    ,
    endTime = CONVERT 
    	( 
    		DATETIME, 
    		RTRIM(run_date) 
    		) 
    		+  
    		( 
    		run_time * 9 
    		+ run_time % 10000 * 6 
    		+ run_time % 100 * 10 
    		+ 25 * run_duration 
    	) / 216e4 
FROM 
    msdb..sysjobhistory JobHistory 
    INNER JOIN msdb..sysjobs Jobs 
    	ON Jobs.job_id = JobHistory.job_id 
WHERE 
JobHistory.step_name = '(Job outcome)'
link|improve this answer
feedback

using management studios, you can right click the job and click view history. this will containt the list of executions for the job.

link|improve this answer
This job is a continous job and is cycling execution status for every one minute.Thank you very much for the advise. – srihari Sep 24 '09 at 13:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.