Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
98 views

Implementing Multithreading in Oracle Procedures

I am working on Oracle 10gR2. And here is my problem - I have a procedure, lets call it *proc_parent* (inside a package) which is supposed to call another procedure, lets call it *user_creation*. I ...
3
votes
2answers
230 views

How can I track the status of my running job using Oracle's DBMS Scheduler?

Is this possible with oracle's scheduler. I just want to track where it currently is executing, when the job is running and get feedback. dbms_scheduler.create_job( job_name => ...
2
votes
2answers
1k views

Running RMAN Scripts with the job scheduler (Oracle)

Here's a good one for any Oracle gurus out there. I'm working on a web page that dynamically configures Oracle DB backup settings in a closed environment. Right now, I have everything set up to ...
1
vote
1answer
63 views

dbms_scheduler job chain exceptions

I'd like to find the best way to handle exceptions (failure of any steps) from an Oracle scheduler job chain (11gR2). Say I have a chain that contains 20 steps. If at any point the chain exits with ...
1
vote
1answer
213 views

dbms_scheduler.run_job('jobName) fails to run

I'm trying to run a scheduled job manually, the job looksa like this DBMS_SCHEDULER.CREATE_JOB ( job_name => 'UPDATE_PLAYER_STATES', job_type => ...
1
vote
2answers
93 views

How to activate a trigger on a date

How could I have a trigger that updates a certain field when the system reaches a certain date ? i.e. +---------------------+ +-------------+ | Trains | | Trips | ...
1
vote
1answer
126 views

Oracle APEX - grabbing script output

Does APEX make it possible to call a script using dbms_scheduler, utl_file or other and grab it's output? The goal is to pass a command to an external API and show a popup either if an exception is ...
1
vote
1answer
4k views

How to execute a procedure with DBMS_SCHEDULER.CREATE_JOB procedure

I want to create a job that would drop a database object at a given date. The job created all right but the procedure is not executed. Tried executing the procedure alone and it works. Here's the ...
1
vote
1answer
668 views

Oracle dbms_scheduler - react to change of system date

I've got a dbms_scheduler-Job running in Oracle 10.2.0. When I change the system date back to yesterday, the job will wait for one day to continue its work. The reason for this is that next_run_date ...
0
votes
1answer
54 views

Why DBMS_Scheduler job failed?

I have written one procedure and one job. From job I am running procedure. Following is the script for creating job DBMS_SCHEDULER.create_job (job_name => 'IBPROD2.RUN_FETCH_ACCT_ALERTS', ...
0
votes
2answers
365 views

Explain “ORA-01870: the intervals or datetimes are not mutually comparable”

When this code is executed in SQL Developer against Oracle 11g I get an error, begin dbms_scheduler.create_job( job_name => 'comuni_34', job_type => 'plsql_block', job_action => 'begin ...