ORACLE-006: Remove and stop jobs, oracle006 remove jobs

Source: Internet
Author: User

ORACLE-006: Remove and stop jobs, oracle006 remove jobs

Generally, you can use SQL to delete or stop a job.

Remove JOB: remove

Stop JOB: broken

First pass

Select * from user_jobs;

Find the job id, and then call

Dbms_job.broken or

Dbms_job.remove to remove and stop. The SQL statement is as follows.

Take removing a job as an example.

1. Search for and remove a JOB based on what value of the job.

Declare job number; v_count number; begin select count (*) INTO v_count FROM user_jobs uj WHERE upper (uj. what) = UPPER ('What value during JOB creation '); if v_count> 0 then SELECT uj. job into job FROM user_jobs uj WHERE upper (uj. what) = UPPER ('What value during JOB creation '); dbms_job.remove (job); commit; end if; end;


2. If you already know the JOB id, you can directly call it.

The JOB id is the value of the JOB field of user_jobs.

Begin dbms_job.broken.remove (JOB1 ID); dbms_job.remove (JOB2 ID); end;

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.