在版本号11.2.0.1.0上,在pl/sql developer中运行一条SQL会导致连接中断,这样的错误要到trace文件夹下找到错误日志文件,再定位。查了一下资料,是这个版本号的bug。
Dump continued from file: d:\app\gcp\diag\rdbms\orcl\orcl\trace\orcl_ora_6040.trc
ORA-07445: 出现异常错误: 核心转储 [kkqljpmpr()+22] [ACCESS_VIOLATION] [ADDR:0x78] [PC:0x56341C6] [UNABLE_TO_READ] []
========= Dump for incident 24395 (ORA 7445 [kkqljpmpr()+22]) ========
----- Beginning of Customized Incident Dump(s) -----
Exception [type: ACCESS_VIOLATION, UNABLE_TO_READ] [ADDR:0x78] [PC:0x56341C6, kkqljpmpr()+22]
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
Process Id: 0x000020f4  Thread Id : 0x00001798    Time : Mon Dec 15 18:26:51 
Excp. Code: 0xc0000005  Excp. Type: ACCESS_VIO    Flags: 0x00000000
------------------- Registers ----------------------------
ip=00000000056341C6 sp=000000002A0A5C80 rp=0000000000000000
r1=00000000292C1640 r2=00000000292C1640 r3=000000002933E9B0 
r4=00000000292C1640 r5=000000002A0A5C80 r6=0000000000000000 r7=0000000000020B78 
r8=0000000000000000 r9=00000000292CFD60 r10=0000000000000000 r11=0000000000000002 
r12=0000000000000005 r13=0000000029348ED0 r14=0000000000000001 r15=00000000292C1640 
------------------- End of Registers ---------------------
*** 2014-12-15 18:26:51.745
dbkedDefDump(): Starting a non-incident diagnostic dump (flags=0x3, level=3, mask=0x0)
----- Current SQL Statement for this session (sql_id=gsak3fq15mt5b) -----
with
dt2 as (select count(1) over() total$,1 null_flag_,row_number() over(order by null) rn,
T2.ID factor1,
T1.ID CN_1,
T1.BUREAU_CODE CN_2,
T1.DEVICE_CODE CN_3
from DM_DEVICE T1,SP_PD_DEFECT T2
where T1.ID=T2.DEVICE_ID
and 1=1
and rownum <= 10),
sc as (select row_number() over(order by null) rn,
COUNT(DISTINCT factor1) factor1
from dt2 dt
where 1=1
GROUP BY 1),
cal as (select row_number() over(order by max(rn),grouping(1)) rn,grouping(1) gp,
max(factor1) C_0_1
from sc
group by rollup(1))
select max(dt.total$) over() total$,row_number() over(order by cal.rn,dt.rn) rn,gp,
case when gp = 1 then cal.C_0_1 end C_0_1,
dt.CN_1,
dt.CN_2,
dt.CN_3
from cal
left join dt2 dt
on gp=0 and dt.rn <= 5000
where gp = 1 or (gp = 0 and dt.null_flag_ is not null)
order by cal.rn,dt.rn
 
 
这是一个bug。假设不改SQL的话。仅仅有通过打补丁的方式解决。
  ORA-7445 [kkqljpmpr] (文档 ID 1288400.1) 转究竟部

In this Document

  

_afrLoop=192430828711876&id=1288400.1&_afrWindowMode=0&600argver=NULLargend&_adf.ctrl-state=q8fmz6vy5_167#REF_PURPOSE">Purpose

  Scope

  ORA-7445 [kkqljpmpr]


APPLIES TO:

Oracle Server - Enterprise Edition

Information in this document applies to any platform.

PURPOSE

Note: For additional ORA-7445 related information please read Document 1092855.1.



  This article provides information on one or more bugs that are 

  known to result in the given ORA-7445 error.

SCOPE

ERROR:

  ORA-7445 failing function "kkqljpmpr"

ORA-7445 [KKQLJPMPR]

SUGGESTIONS:

If the Known Issues section below does not help in terms of identifying

  a solution, please submit the trace files and alert.log to Oracle 

  Support Services for further analysis.



  Known Issues:



Known Bugs

You can restrict the list below to issues likely to affect one of the following versions by clicking the relevant button: 

        



The list below is restricted to show only bugs believed to affect version 11.2.0.1.

Other bugs may affect this version but have not been confirmed as being relevant yet.
There is 1 bug listed.
NB Bug Fixed Description
 

parent=DOCUMENT&sourceId=1288400.1&id=9002336.8">9002336

11.2.0.1.BP05, 11.2.0.2 Assorted Dumps with DISTINCT & WITH clause
  • '*' indicates that an alert exists for that issue.
  • '+' indicates a particularly notable issue / bug.
  • 'P' indicates a port specific bug.
  • "OERI:xxxx" may be used as shorthand for ORA-600 [xxxx].

ORA-07445 第一參数为:kkqljpmpr的更多相关文章

  1. 一起talk C栗子吧(第一百二十七回:C语言实例--查看main函数的參数)

    各位看官们,大家好,上一回中咱们说的是static关键字的样例,这一回咱们说的样例是:查看main函数的參数.闲话休提,言归正转.让我们一起talk C栗子吧! 看官们.我们在第五十七回中介绍过mai ...

  2. 【Unity3D】【NGUI】怎样动态给EventDelegate加入參数

    NGUI版本号:3.6.8 注意:參数必须是公共成员变量.不能是栈上的.或者私有的(就是暂时在函数里面定义的或者是函数的參数都不行) using UnityEngine; using System.C ...

  3. EBS OAF开发中实现參数式弹出窗体

    EBS OAF开发中实现參数式弹出窗体 (版权声明,本人原创或者翻译的文章如需转载,如转载用于个人学习,请注明出处:否则请与本人联系,违者必究) 概览 參数式弹出窗体和嵌入式弹出窗体不一样,它拥有独立 ...

  4. OC可变參数的函数实现va_start、va_end、va_list的使用

    一.简单介绍 我们常常在编程的时候看见类似这种代码,如图1.1 图1.1 或者是这种可变參数,如图1.2 图1.2 二.基本知识介绍 在学习怎样写这样的格式的函数前,先简介几个经常使用的宏: 下面摘自 ...

  5. android soundpool 參数说明

    SoundPool 类的构造函数例如以下: SoundPool(int maxStreams, int streamType, int srcQuality) 作用:实例化一个SoundPool 实例 ...

  6. iOS 处理方法中的可变參数

    ## iOS 处理方法中的可变參数 近期写了一个自己定义的对话框的demo,想模仿系统的UIAlertView的实现方式.对处理可变參数的时候,遇到了小问题,于是谷歌了一下.写下了处理问题的方法.记录 ...

  7. 学习pthreads,给线程传递多个參数

    上篇博文中.boss线程给其它线程传递的仅仅有一个參数,那么假如是多个參数呢?怎么传递呢?也许你会有这种疑问,带着这个疑问,我们进入本文的世界,这里传递多个參数,採用结构体,为什么呢?由于结构体里能够 ...

  8. 【web开发学习笔记】Structs2 Result学习笔记(三)带參数的结果集

    Result学习笔记(三)带參数的结果集 第一部分:代码 //前端 <head> <meta http-equiv="Content-Type" content= ...

  9. grep命令參数及使用方法

    功能说明:查找文件中符合条件的字符串. 语 法:grep [-abcEFGhHilLnqrsvVwxy][-A<显示列数>][-B<显示列数>][-C<显示列数>] ...

随机推荐

  1. Ubuntu 清理卸载残留文件

    dpkg -l |grep ^rc|awk '{print $2}' |sudo xargs dpkg -P

  2. Linux下平滑升级nginx

    一.升级前准备 1.对nginx的配置文件nginx.conf做备份: 2.新建目录/root/nginx,将安装包和脚本上传到该目录下: 二.平滑升级nginx 1.开始编译新版本的nginx cd ...

  3. 【01】如何在XMind中排列自由主题

    如何在XMind中一招排列自由主题 在XMind思维导图软件中,用户可以随心所欲的添加自由主题,但由于自由主题的灵活性,造成了它的不整齐性,相对需要操持界面排列有序的用户来说,会造成一定的困扰. 第一 ...

  4. vc调试大全

    一.调试基础 调试快捷键 F5:  开始调试 Shift+F5: 停止调试 F10:   调试到下一句,这里是单步跟踪 F11:   调试到下一句,跟进函数内部 Shift+F11:  从当前函数中跳 ...

  5. 【LeetCode】String to Integer (atoi)(字符串转换整数 (atoi))

    这道题是LeetCode里的第8道题. 题目要求: 请你来实现一个 atoi 函数,使其能将字符串转换成整数. 首先,该函数会根据需要丢弃无用的开头空格字符,直到寻找到第一个非空格的字符为止. 当我们 ...

  6. 利用pytorch复现spatial pyramid pooling层

    sppnet不讲了,懒得写...直接上代码 from math import floor, ceil import torch import torch.nn as nn import torch.n ...

  7. ActionProxy相关实现类

    package com.opensymphony.xwork2; import com.opensymphony.xwork2.config.Configuration; import com.ope ...

  8. HDU-5536 Chip Factory,又见字典树,好题+1!

    Chip Factory 题意:一个n个数的数列,求三个数其中两个数的和与另外一个数的异或值最大,输出这个最大值. 思路:和前面那个百度之星资格赛HDU4825的类似,多了两个过程,一个是枚举和,另一 ...

  9. Java&Android代码规范

    项目中直接导入Square的代码风格文件.(不导入Google的原因是Square同时提供了Java和Android两套统一风格,Google只提供了一套) Square Code Styles Go ...

  10. 【Luogu】P1330封锁阳光大学(bfs染色)

    题目链接 这题恶心死我了. bfs染色,统计每个联通块两色的个数,ans加它们的最小值. #include<cstdio> #include<cctype> #include& ...