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!

SQL Server 2000 - job steps 1

Status
Not open for further replies.

cmmrfrds

Programmer
Joined
Feb 13, 2000
Messages
4,690
Location
US
I was looking in sql help for sql server 7 and it referenced some stored procedures(SP's) to set up jobs. These SP's don't seem to be in 2000. Can anybody point me to help for 2000? Is there another way to set up jobs in SQL Server 2000 besides the SP's like sp_add_job and sp_add_jobstep?
 

The same stored procedures exist in SQL 2000.

sp_add_job
sp_add_jobschedule
sp_add_jobstep
sp_delete_job
sp_help_job
sp_help_jobstep
sp_update_job

You can add jobs in SQL 7 or SQL 2000 with Enterprise Manager.

Terry L. Broadbent
FAQ183-874 contains tips for posting questions in these forums.
NOTE: Reference to the FAQ is not directed at any individual.
 
I looked in the master database but for some reason these stored procedures don't show up on my sql server 2000. I will check into enterprise manager to create jobs. What I was trying to do was set up a script so that I could go to another server and add the same jobs.
 

Look in the msdb database for these procedures. Jobs are created and stored in msdb. Terry L. Broadbent
FAQ183-874 contains tips for posting questions in these forums.
NOTE: Reference to the FAQ is not directed at any individual.
 
Thank you, looking in the right database made the difference.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top