hot questions tagged dbms-scheduler - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T13:55:03Zhttp://stackoverflow.com/feeds/tag?tagnames=dbms-scheduler&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1759598/running-rman-scripts-with-the-job-scheduler-oracle2Running RMAN Scripts with the job scheduler (Oracle)Raggedtoad2009-11-18T22:26:17Z2009-11-30T14:06:08Z
<p>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 generate scheduled jobs that run pre-determined RMAN scripts that already exist on the Database server's disk. This works, but I want to go a step further.</p>
<p>Is there any way to create jobs with the scheduler that will run RMAN scripts which haven't first been written to disk? For example, is it possible to fire off an RMAN backup script directly from the scheduler by using a pipe of some sort? I've found some vague information on the <a href="http://download.oracle.com/docs/cd/B28359%5F01/backup.111/b28270/rcmcnctg.htm#i1008446" rel="nofollow">RMAN Pipe Interface</a>, but I can't see how I could create a private pipe, pack it with RMAN commands, and then feed it to RMAN all in one job run... Any thoughts would be very much appreciated.</p>
http://stackoverflow.com/questions/1769906/how-to-execute-a-procedure-with-dbmsscheduler-createjob-procedure1How to execute a procedure with DBMS_SCHEDULER.CREATE_JOB procedureTunde2009-11-20T11:32:34Z2009-11-20T12:54:44Z
<p>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.</p>
<p>Here's the code for the create job</p>
<p>v_jobnam := v_objnam;
v_jobnam := DBMS_SCHEDULER.generate_job_name (v_jobnam); </p>
<pre><code> v_startdate := to_timestamp(v_startdate);
select sysdate + (v_delhrs/1440)
into v_startdate
from dual;
DBMS_SCHEDULER.CREATE_JOB(job_name => v_jobnam, job_type => 'PLSQL_BLOCK', JOB_ACTION => 'BEGIN DROP_OBJ1(' || v_objnam|| ', ' || v_objtyp || ', '|| v_schema || ',' || v_objid ||'); END;', start_date => SYSTIMESTAMP, repeat_interval => 'freq=secondly; bysecond=0', end_date => NULL, enabled => TRUE, comments => 'Calls PLSQL once');
</code></pre>
<p>where v_delhrs is a number.
Here's the code for the procedure:</p>
<p>PROCEDURE DROP_OBJ1
(
p_objnam IN CHAR,
p_objtyp IN CHAR,
p_copyto IN ALL_OBJECTS.OWNER%TYPE,
p_objid IN NUMBER
)
IS</p>
<p>v_objnam VARCHAR2 (30);
v_objtyp VARCHAR2 (30);
v_copyto VARCHAR2 (30);
v_objid NUMBER (3);</p>
<p>BEGIN</p>
<pre><code> v_objnam := UPPER (p_objnam);
v_objtyp := UPPER (p_objtyp);
v_copyto := UPPER (p_copyto);
v_objid := p_objid;
--v_copyby := UPPER (p_copyby);
EXECUTE IMMEDIATE ( ' DROP '
|| v_objtyp
|| ' '
|| v_copyto
|| '.'
|| v_objnam
);
EXECUTE IMMEDIATE ( ' DELETE FROM COPY_OBJ_DET WHERE OBJ_ID = '
|| v_objid
);
COMMIT;
</code></pre>
<p>END;</p>
<p>I know its a very minor problem.
Thanks in advance gurus.</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/308793/oracle-dbmsscheduler-react-to-change-of-system-date1Oracle dbms_scheduler - react to change of system datePeter Lang2008-11-21T13:41:12Z2008-11-24T16:47:44Z
<p>I've got a <em>dbms_scheduler</em>-Job running in Oracle 10.2.0.</p>
<p>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 <em>next_run_date</em> does not change.</p>
<p>This does not happen regularly, but sometimes someone decides to change the system date without thinking or even knowing about oracle jobs running.</p>
<p>Any suggestions on how to keep my job running with the configured interval (without having it to change manually)?</p>