Tagged Questions

A package in Oracle. The DBMS_JOB package schedules and manages jobs in the job queue.

learn more… | top users | synonyms

3
votes
1answer
156 views

Oracle Job not been executed for no reason

Im programing a job in oracle in order to execute a store procedure, but when the time comes it just does not happend any thing for no reason. Is there some kind of log where I can see if an error ...
2
votes
1answer
762 views

Script to disable all jobs in Oracle (DBMS_JOB package)?

I'm looking for a script which disables all the jobs. Right now I highlight them all in Toad, click the take offline button and then commit changes. There has to be a way to do this in PL/SQL.
2
votes
2answers
850 views

Killing an Oracle job. 10g specific

We're using a job scheduling system that runs on top of DBMS_JOB. It uses a master job to create one-time jobs. We deploy the same set of jobs to all our clients, but can specify which jobs should ...
1
vote
2answers
293 views

Trying to make a job to be executed after each 1 minute,but its not working?

I have made this job,that should be executed in an interval of 1 minute,but it's not working. When I use execute dbms_job.run(2); it gets executed. printe is a procedure Please suggest! BEGIN ...
0
votes
2answers
384 views

Oracle dbms_job: job have to run only weekday 6am-8pm

i have an oracle 10g Database with different jobs. One of thoses jobs have to run every two hours. Therefore the "next_dat" and "interval" parameters looks like that. ,next_date => ...