4065错误处理过程笔记

接渠道反馈,某用户在进行软件操作的时候提示‘ORA-4065未执行,已变更或删除存储过程 Zl_XXXX_Finish’,用户尝试重新编译下这个过程,又可以使用,但是一段时间后又会提示该错误,用户希望彻底解决。

问题分析 步骤一:查看错误代码官方解释

如果有错误信息(ORA错误代码),我们肯定首先看下这个错误的官方解释,如下:

Error description:

Error: ORA 4065
Text: not executed, altered or dropped %s
-------------------------------------------------------------------------------
Cause: Attempt to execute a stored procedure that has been altered or droppedthus making it not callable from the
calling procedure.
Action: Recompile its dependents.

Error: ORA 4068
Text: existing state of packages%s%s%s has been discarded
-------------------------------------------------------------------------------
Cause: One of errors 4060 - 4067 when attempt to execute a stored procedure.
Action: Try again after proper re-initialization of any application's state.

可以看到,错误解释里面已经提到重新编译下就能够解决,但是显然这种解决方式并不能够彻底的处理这个问题,我们需要更进一步的查找错误的处理方法。

步骤二:查找官方文档

随后查询官方文档,找到一篇过程描述比较接近的内容,Summary of Causes for ORA-4068 and ORA-4065 in10gR2,其中给出了另外一种导致该错误的原因如下,关键内容如下:

Bug 6136074 ORA-4068 ORA-4065 ORA-06508 ERRORS SIGNALED FOR VALID OBJECTS

Component: RDBMS
Fixed Ver(s): 10204 111
Symptom(s):
Recompilation of a view might lead to inconsistent timestamps for some of theview's PLSQL dependents. The script in

Note 136697.1can be used to check for such problem DEPENDENCY$ entries, or use the SQLbelow:

set pagesize 10000
column d_name format a20
column p_name format a20
select do.obj# d_obj,do.name d_name, do.type# d_type,
po.obj# p_obj,po.name p_name,
to_char(p_timestamp,'DD-MON-YYYY HH24:MI:SS') "P_Timestamp",
to_char(po.stime ,'DD-MON-YYYY HH24:MI:SS') "STIME",
decode(sign(po.stime-p_timestamp),0,'SAME','*DIFFER*') X
from sys.obj$ do, sys.dependency$ d, sys.obj$ po
where P_OBJ#=po.obj#(+)
and D_OBJ#=do.obj#
and do.status=1 /*dependent is valid*/
and po.status=1 /*parent is valid*/
and po.stime!=p_timestamp /*parent timestamp not match*/
order by 2,1;

上门的文档内容说,这个问题还可能是bug6136074引起,通过给出的查询语句,可以查询到过程时间戳不一致的情况,一般情况下,通过重新编译过程,能够使时间戳一致,但是有时候光编译还不能起到效果,这时候,就必须删除重建的方式,这里要看是什么对象,我们这里查出来是公共同义词,就只需要删除同义词重建就可以。

解决过程

通过官方给出的SQL查询是Zl_病人医嘱执行_Finish的公共同义词时间戳不一致,我们这里删除这个过程的公共同义词,然后重建,完成本次问题的处理。

注意删除同义词的时候,告知用户可能引起暂时的无法使用。

Linux-6-64下安装Oracle 12C笔记

CentOS 6.4下安装Oracle 11gR2(x64)

Oracle 11gR2 在VMWare虚拟机中安装步骤

Debian 下 安装 Oracle 11g XE R2

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/0c08f5e10eb65296143c87679fb80d27.html