JOBS in Oracle using DBMS_JOB [message #295879] |
Wed, 23 January 2008 16:29 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
Krann
Messages: 4 Registered: December 2007
|
Junior Member |
|
|
Hi, i am new using DBMS_JOB package.
I want to know if the jobs need admin pivilegies to run in an time interval, because a made one but only run if i use the method
DBMS_job.RUN(jobID)
the code of my job is:
declare
jobID int;
begin
dbms_job.Submit(jobID,
'begin myProcWithOptParameters(); end;',
sysdate,'sysdate+(16/1440)',
false);
end;
Thanks for your help.
Krann.
[Updated on: Thu, 24 January 2008 09:19] by Moderator Report message to a moderator
|
|
|
|
|