declare
jobno number;
begin
dbms_job.submit(jobno,'SP_PRE;', sysdate+1/1400,'sysdate+1/1400');
commit;
end;
When I check the user_jobs, the next_date column shows the process is due to run in a minute but its not executing at all. Where us If I use DBMS_JOB.RUN(1), its executing the procedure SP_PRE.
How do you know the job is not executed? Is last_date in user_jobs null?
Maybe an error occured, broken in user_jobs is 'N', and failures is 0?
Maybe others jobs are running.
Bookmarks