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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

About jobs

Status
Not open for further replies.

josecarlo

Programmer
Aug 22, 2000
30
PE
Hi,

Can anybody tell me how to delete a job and create a new one? I have one that it didn't make its work, so I want to delete it and create a new one. My job had to refresh a materialized view every day. Thanks.

Jose Carlos



JOSE CARLOS ARAMBURU
josecarloaa@hotmail.com
 
these are called snp jobs in oracle.

at the command prompt:>

sql> exec dbms_job.isubmit(999, 'storedprocname',startdate, interval, null);

sql> commit;

to stop
sql> dbms_job.remove(999);


job number, 999, must match!

~za~
You can't bring back a dead thread!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top