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?
|
feedback
|
|
USE msdb SELECT * FROM dbo.sysjobs_view | |||||||||||
feedback
|
|
This should give you what you need
| |||
|
feedback
|
|
using management studios, you can right click the job and click view history. this will containt the list of executions for the job. | |||
feedback
|