当前位置:  数据库>oracle

ORA-4065错误处理过程笔记

    来源: 互联网  发布时间:2017-06-06

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

接渠道反馈,某用户在进行软件操作的时候提示‘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


    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • oracle报错(ORA-00600)问题处理
  • 如何得到带有ora的行的下一行
  • 如何配置 linux 下 oracle 的 listener .ora 和
  • 浅析如何在tnsnames.ora中配置监听
  • Orcle的package中访问其它Schema的表报错ORA-00942解决方法
  • oracle远程连接服务器出现 ORA-12170 TNS:连接超时 解决办法
  • [Oracle] 浅析令人抓狂的ORA-01555问题
  • 解决报错ora-32035的方法分析
  • aq.executeQuery: ORA-00020: maximum number of processes (59) exceeded
  • ORA-00947:Not enough values (没有足够的值)的深入分析
  • solaris10 安装 ora9.2.0.1 时报错
  • 在UNIX下,我的ORA817该怎么样才可以自己启动呀?
  • 基于ORA-12170 TNS 连接超时解决办法详解
  • 安装oracle出现error:ora-01031:insufficient privilleges的解决
  • 谁能帮忙解释一下: ORA-01000 : maximun open cursors exceeded
  • 关于Oracle游标的问题(ORA-01000: maximum open cursors exceeded)
  • 我在Linux7。3下面装了一个Oracle8i,但是现在启动不起来了,总是报错ORA-01031: insufficient privileges
  • zilong28提问:Tomcat3.2报错内容是Error occurs when connecting DB: ORA-00020: maximum number of processes(59) exceeded 我应该如何解决,先谢了
  • ORA-28002 Oracle 11g存在密码过期问题解决方案
  • Oracle ORA-22908(NULL表值的参考)异常分析与解决方法
  • 在UNIX下,我的ORA817该怎么样才可以自己启动呀? iis7站长之家


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,