This does not really qualify as news, but it is worth mentioning that System Center…
If you are interested in the run duration of the jobs on your SQL Server you would most likely query the system tables sysjobs and sysjobhistory from the msdb database in a manner similar to this:
select name ,enabled ,run_status ,run_date ,run_time ,run_duration from msdb.dbo.sysjobs sj join msdb.dbo.sysjobhistory sjh on sj.job_id = sjh.job_id
What is interesting (and yes, it could be misleading!) is that the run_duration is presented by the following formula: