Link to home
Start Free TrialLog in
Avatar of kasiencja
kasiencjaFlag for Canada

asked on

Get a list of Job schedules in SQL Server 2005

Is there a way to get a list of all jobs and their schedules from the SQL Server Agent on SQL Server 2005?

Thanks,
Kate
ASKER CERTIFIED SOLUTION
Avatar of Aneesh
Aneesh
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of kasiencja

ASKER

Thanks!
To get a more readable result set, follow the steps here:
http://www.mssqltips.com/tip.asp?tip=1622

You create a function in msdb, then run a script against it. Results look something like this.

name                      active_start_time       ScheduleDscr
SqlMon-4                0:00                              Automatically starts when SQLServerAgent starts.
SqlMon All              6:02                              Every day at 6:02
SqlAudit - Scan     12:35                            Every 1 week(s) on Monday at 12:35


 
Thanks for the last post; it does make life a lot easier with this layout.  I'm sorry I don't think/not sure I can split the points at this time.

Kate