Skip to Main Content

Oracle Database Discussions

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!

How to drop a job?

834783Nov 1 2011 — edited Nov 4 2011
I am using 8.1.7.4

These commands do not remove the job 61...

SELECT * FROM dba_jobs_running;

SELECT JOB FROM DBA_JOBS WHERE JOB=61;

BEGIN
EXECUTE DBMS_JOB.REMOVE(61);
COMMIT;
END;

SELECT JOB FROM DBA_JOBS WHERE JOB=61;
This post has been answered by 32404 on Nov 2 2011
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 2 2011
Added on Nov 1 2011
17 comments
37,366 views