Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

DBMS_JOB.CHANGE

happy10319Jan 24 2012 — edited Jan 24 2012
Hi,
I have 200 jobs and want to modify the next execution date to 24 of january (conserving the same hour ). How can I use the following to change all jobs in user_jobs table :
[code ]
•If the parameters what, next_date, or interval are NULL, then leave that value as it is.

Example

BEGIN
DBMS_JOB.CHANGE(14144, null, null, 'sysdate+3');
COMMIT;
END;



Thank you
This post has been answered by 911532 on Jan 24 2012
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 21 2012
Added on Jan 24 2012
6 comments
2,572 views