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!

Job doesn't run although state is "scheduled"

679481Apr 22 2009 — edited Apr 27 2009
Hi guys,

it's the first time I'm handling with jobs. I created one just for testing, It is included in the job table "dba_scheduler_jobs" with state attribute as "scheduled". I think it should run secondly, but it doesn't. Does anybody know why??
I created the job like this (created on 04/22/2009 at 19:30:00 ):
begin
dbms_scheduler.create_job(
job_name => 'INSERT_TABLE',
job_type => 'PLSQL_BLOCK',
job_action => 'begin insert into asn_errorlog (id, log, datum) VALUES (NULL, sadas, sadsad); end;',
number_of_arguments => '0',
start_date => to_date('04/22/2009 19:48:00','mm/dd/yyyy HH24:MI:SS'),
repeat_interval => 'freq=secondly',
end_date => NULL,
job_class => 'DEFAULT_JOB_CLASS',
enabled => TRUE,
auto_drop => FALSE,
comments => NULL);
END;
Thanks for any kind of help!

Patrick
This post has been answered by rbglossip on Apr 27 2009
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 25 2009
Added on Apr 22 2009
29 comments
3,476 views