What calls/stores DBMS_JOB calls?
The call:
declare number;
begin
dbms_job.submit(j.'<PROCEDURE_NAME>;',sysdate,'sysdate + 1/24');
end;
/
What reads this every hour? (I understand that "1/24" goes to "1" if I want it to run daily. Just not sure where to set that (and how to keep this from running once an hour when I do).
Mike