Attention: When you change a job's definition using the WHAT parameter in the procedure CHANGE or WHAT, Oracle records your current environment. This becomes the new environment for the job.
DBMS_JOB.CHANGE( job => 14144,
what => null,
next_date => null,
interval => 'SYSDATE + 3');You could make this same change by calling the INTERVAL procedure, as shown in the following example:
DBMS_JOB.INTERVAL( job => 14144,
interval => 'SYSDATE + 3');Additional Information: The parameters for these procedures are described in the following tables:
CHANGE Table 12 - 31
WHAT Table 12 - 37
NEXT_DATE Table 12 - 33
INTERVAL Table 12 - 32