- i have main proc in the package which calls others procs . So "What means" do have to give only main proc name or something like "package.mainproc".
Answer: See my script below
and also does "interval" takescare running the job everytime right?
Answer: Yes, correct.
i got cleared all my questions pertaining to this thread. all the answers helpfull for me..
Possible send me the script please.
Answer: This is the script that you will ran in sqlplus connecting as the owner of the package.
Just run this:
declare
v integer;
begin
DBMS_JOB.SUBMIT (v, 'package.mainproc;', trunc(sysdate)+20/24, 'trunc(SYSDATE+1)+20/24)');
end;
commit;
/