I want to understand a dbms_job.submit statement
dbms_job.submit(jobno, 'xxxsome_pl_sql_statement',next_date,interval);
next_date evaluates to Last_Day(Sysdate) ----30-apr-22
interval evaluates to Last_Day(Add_Months(Sysdate,1)) ------31-may-22
sysdate for today is 13-apr-22
1.How to interpret 31-may-22 as the interval? Should I interpret the interval as the time between Last_Day(Sysdate) and Last_Day(Add_Months(Sysdate,1)),which is approximately one month?
2.The next date to run the job has already been set, why do we need to set the interval again?
NEXT_DATE
is the next time the job should execute.INTERVAL
is a SQL formula in varchar2 format to calculate subsequent executions, not a date itself, and should be enclosed in single quotes like the PL/SQL statement.LAST_DAY
andADD_MONTHS
are SQL functions.