Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

dbms_schedular

Chanchal WankhadeJan 2 2013 — edited Jan 2 2013
Hellow All,

We have oracle 10g On windows....

i have created a schedular like below
BEGIN
  DBMS_SCHEDULER.create_job (
    job_name        => 'TEST_JOB',
    job_type        => 'PLSQL_BLOCK',
    job_action      => 'BEGIN DDD; END;',
    start_date      => SYSTIMESTAMP,
    repeat_interval => 'freq=MINUTELY; byminute=0; bysecond=0;',
    end_date        => NULL,
    enabled         => TRUE,
    comments        => 'Job defined entirely by the CREATE JOB procedure.');
END;
could you please tell me what is the repeat_interval of above. I have specified MINUTELY but it's not firing after each minute.
This post has been answered by Nimish Garg on Jan 2 2013
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 30 2013
Added on Jan 2 2013
5 comments
198 views