I would like to share my experience on MSSql server
Monday, 11 April 2011
Query to find the job history in SQL Server
select a.run_date,b.name,a.run_duration,run_time,a.serverfrom sysjobhistory a innerjoin sysjobs b on a.job_id=b.job_id where a.job_id='8E7D12F1-6B7E-4C08-8063-D8AAFD99F267'and a.step_id =0orderby a.run_date desc
No comments:
Post a Comment