BEGIN
 FOR job_id in(select job,log_user,priv_user,schema_user from dba_jobs)
   LOOP
    IF(job_id.log_user not LIKE '%SYS%') THEN
       BEGIN  
          dbms_ijob.remove(job_id.job);
          commit;
        end;
    end if;
  end loop;
end;
  /

相关文章:

  • 2022-12-23
  • 2021-10-04
  • 2021-09-19
  • 2021-11-16
  • 2021-10-30
  • 2021-08-17
  • 2021-11-29
猜你喜欢
  • 2022-12-23
  • 2021-11-29
  • 2021-10-18
  • 2022-12-23
  • 2022-12-23
  • 2021-11-25
  • 2021-09-28
相关资源
相似解决方案