Please, has anyone an idea about planning job in axact time ? I mean
we need to run job in every minute starting at 00 sec. This job takes
about 2 secs and call another stored procedure.
I wrote this pl/sql block:
declare
l_job number;
begin
dbms_job.submit ( l_job,
'test_proc;',
sysdate,
'sysdate+1/1440' );
commit;
end;
Everything is fine except of submit time. I have no idea about telling
Oracle to run this job every minute at 00 sec.
Thanks
we need to run job in every minute starting at 00 sec. This job takes
about 2 secs and call another stored procedure.
I wrote this pl/sql block:
declare
l_job number;
begin
dbms_job.submit ( l_job,
'test_proc;',
sysdate,
'sysdate+1/1440' );
commit;
end;
Everything is fine except of submit time. I have no idea about telling
Oracle to run this job every minute at 00 sec.
Thanks
Comment