I have the following script, which lists a lot of information regarding my Agent jobs on a server:
SELECT DISTINCT substring(SYSJOBS.name,1,100) AS [Job Name], SYSJOBSTEPS.step_name AS JobStep,
SYSCATEGORIES.name AS category, SYSJOBS.description as JobDescription, SYSJOBS.date_created as...