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!

How to drop a scheduled job in oracle

Gayathri VenugopalMay 26 2016 — edited May 26 2016

I created a job named ENTRY_TIME

BEGIN

      DBMS_SCHEDULER.CREATE_JOB (

       job_name           =>  'ENTRY_TIME',

       job_type           =>  'STORED_PROCEDURE',

       job_action         =>  'PK_ENTRY_TIME.PROC_ENTRY_TIME',

       start_date         =>  '24-MAY-16 07.00.00 AM America/Chicago',

       repeat_interval    =>  'FREQ=DAILY',

       end_date           =>  '20-NOV-99 07.00.00 AM America/Chicago',

       auto_drop          =>   FALSE,

      comments           =>  'My new job');

    END;

    /

Now I want to drop this job.What query should be used to drop this job Entry_time permanently?

This post has been answered by Bhavin Mamtora on May 26 2016
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 23 2016
Added on May 26 2016
3 comments
51,008 views