Oct 25, 2011 #1 robert030975 MIS Joined Oct 17, 2006 Messages 227 Is there an easy way to list what the SQL Agent job start time and finish time was ? Many Thanks
Oct 25, 2011 #2 gmmastros Programmer Joined Feb 15, 2005 Messages 14,912 Location US Take a look at these 2 queries. Code: Select * From msdb.dbo.sysjobhistory Select * From msdb.dbo.sysjobs -George Microsoft SQL Server MVP My Blogs SQLCop "The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom Upvote 0 Downvote
Take a look at these 2 queries. Code: Select * From msdb.dbo.sysjobhistory Select * From msdb.dbo.sysjobs -George Microsoft SQL Server MVP My Blogs SQLCop "The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom