How to monitor SQL Server Agent Job info in C#

i can do this already… i select form table “Sysjobserver” in database “msdb” for read status, date, time of job that i want. use this code public void GetJobsAndStatus() { string sqlJobQuery = “select j.job_id, j.name, j.enabled, jh.run_status,” + ” js.last_outcome_message, jh.run_date, jh.step_name, jh.run_time” + ” from sysjobs j left join sysjobhistory jh on (j.job_id … Read more