ORA-27367: program “string.string” associated with this job is disabled ORACLE 报错 故障修复 远程处理
文档解释
ORA-27367: program “string.string” associated with this job is disabled
Cause: An attempt was made to run a job whose program has been disabled.
Action: Reenable the program before running the job.
。
官方解释
常见案例
一般处理方法及步骤
1、查看任务中引用的程序是否正常;
2、检查调度的任务中使用的PL/SQL过程,是否有ENABLE,或者CURRENT_USER等权限问题;
3、如果PL/SQLModule未指定过,那就应该将其禁用(DISABLE);
4、重新启用重复任务(ENABLE);
5、检查需要执行的PL/SQL过程是否可启用;
6、重新编译过程,以确保生成的正确启用状态。