Job____oracle to automatically monitor and reset Oracle's exception execution

Source: Internet
Author: User
--Monitoring whether the job performs an abnormal or stopped behavior
CREATE OR REPLACE PROCEDURE p_job_monitoring as
BEGIN
For V in (SELECT JOB, WHAT, failures, broken
From User_jobs T
WHERE t.failures > 15
OR t.broken = ' Y '
OR t.next_date > To_date (' 2070-01-01 ', ' yyyy-mm-dd ') LOOP
Dbms_output. Put_Line (V.what | | ' Perform an exception, please check! ');
Dbms_job. RUN (V.job);
Dbms_job. Broken (V.job, FALSE);
End LOOP;
End;
/


--1-hour execution of this stored procedure
VARIABLE job_no number;
BEGIN
Dbms_job. SUBMIT (: Job_no, ' p_job_monitoring; ', sysdate, ' sysdate+1/24 ');
COMMIT;
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.