How do I convert SysJobHistory to time and duration to meaningful numbers?
select nsj.name, nsjs.step_name, nsjs.run_date, nsjs.run_duration
from msdb..sysjobs nsj join msdb..sysjobhistory nsjs on nsj.job_id = nsjs.job_id
where name in ('Job Name') and nsjs.step_name not in ('(Job outcome)')
and run_date > 'YYYYMMDD' and run_duration > 100
order by step_name, run_date desc