Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

i'm trying to schedule jobs on sql server 2000

Status
Not open for further replies.

mit99mh

Programmer
Joined
Sep 24, 2002
Messages
246
Location
GB
and i want to delete a job - how do I:
1) View a list of jobs
2) Delete a job - I've tried using sp_delete_jobschedule but I get a message "Could not find stored procedure"

Any help appreciated
 
SELECT *
FROM msdb..sysjobs

will give you a list of jobs.

Try sp_delete_job to kill the job. Havnt tested it, but i think this is it.

you can also use em to view them under management/sqlserver agent/jobs
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top