[工作記錄]ORA-03113/ORA-07445
Trace file /opt/oracle/diag/rdbms/business/BUSINESS4/trace/BUSINESS4_ora_1300.trc
Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
With the Partitioning, Real Application Clusters, OLAP, Data Mining
and Real Application Testing options
ORACLE_HOME = /opt/oracle/product/11gR1/db
System name: Linux
Node name: DC-CLUSTER-04
Release: 2.6.16.60-0.21-smp
Version: #1 SMP Tue May 6 12:41:02 UTC 2008
Machine: x86_64
Instance name: BUSINESS4
Redo thread mounted by this instance: 4
Oracle process number: 55
Unix process pid: 1300, image: oracle@DC-CLUSTER-04
*** 2010-06-25 13:23:48.466
*** SESSION ID:(99.2262) 2010-06-25 13:23:48.466
*** CLIENT ID:() 2010-06-25 13:23:48.466
*** SERVICE NAME:(BUSINESS.DMC) 2010-06-25 13:23:48.466
*** MODULE NAME:(PL/SQL Developer) 2010-06-25 13:23:48.466
*** ACTION NAME:(SQL Window - declare reportDate ) 2010-06-25 13:23:48.466
Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0x160] [PC:0xF5A5C9, kkecdn()+6169]
DDE: Problem Key 'ORA 7445 [kkecdn()+6169]' was flood controlled (0x2) (incident: 24456)
ORA-07445: exception encountered [kkecdn()+6169] [SIGSEGV] [ADDR:0x160] [PC:0xF5A5C9] [Address not mapped to object] []
ssexhd: crashing the process...
Shadow_Core_Dump = PARTIAL
可以嘗試的解決方法
ORA-07445 : What can cause this error
Bug in Oracle Code
Change in reference libraries [ If you have recently applied OS patches, it may be wise to relink the binaries ]
Code changes in application that causes invalid/null value conditions where a valid value is expected
Software issues like incorrect Libaries due to invalid environment variables primarily related to PATH and LD_LIBRARY_PATH
安裝OS補丁後,可以重新連結下庫檔案。
如果重新啟動OS並重新連結過庫檔案後,問題依然存在,最好去metalink上查下
目前可以重現該問題的語句
declare
reportDate date:=date '2010-6-25';
begin
update dho_character_timer set state=0 where state=1;
commit;
insert into dho_character_timer
select b.collserver,
a.login_username,
a.char_name,
sum(b.playedtime),
reportDate-1,
1
from (select char_index,
account_index,
login_username,
char_name
from business.dho_game_character
where colltime>=reportDate and colltime join (select t.*,
(t.log_out-t.log_in)*24*60*60 as playedtime
from (select collserver,
account_id,
char_id,
log_action,
log_time log_out,
lag(log_time,1)over(partition by account_id,char_id order by log_time) as log_in
from business.dho_log_loginchar
where log_time>=reportDate-2 and log_time where log_action=4 and log_out>=reportDate-1 and log_in is not null)b
on a.account_index=b.account_id and a.char_index=b.char_id
group by b.collserver,a.login_username,a.char_name;
commit;
end;[@more@]
Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
With the Partitioning, Real Application Clusters, OLAP, Data Mining
and Real Application Testing options
ORACLE_HOME = /opt/oracle/product/11gR1/db
System name: Linux
Node name: DC-CLUSTER-04
Release: 2.6.16.60-0.21-smp
Version: #1 SMP Tue May 6 12:41:02 UTC 2008
Machine: x86_64
Instance name: BUSINESS4
Redo thread mounted by this instance: 4
Oracle process number: 55
Unix process pid: 1300, image: oracle@DC-CLUSTER-04
*** 2010-06-25 13:23:48.466
*** SESSION ID:(99.2262) 2010-06-25 13:23:48.466
*** CLIENT ID:() 2010-06-25 13:23:48.466
*** SERVICE NAME:(BUSINESS.DMC) 2010-06-25 13:23:48.466
*** MODULE NAME:(PL/SQL Developer) 2010-06-25 13:23:48.466
*** ACTION NAME:(SQL Window - declare reportDate ) 2010-06-25 13:23:48.466
Exception [type: SIGSEGV, Address not mapped to object] [ADDR:0x160] [PC:0xF5A5C9, kkecdn()+6169]
DDE: Problem Key 'ORA 7445 [kkecdn()+6169]' was flood controlled (0x2) (incident: 24456)
ORA-07445: exception encountered [kkecdn()+6169] [SIGSEGV] [ADDR:0x160] [PC:0xF5A5C9] [Address not mapped to object] []
ssexhd: crashing the process...
Shadow_Core_Dump = PARTIAL
可以嘗試的解決方法
ORA-07445 : What can cause this error
Bug in Oracle Code
Change in reference libraries [ If you have recently applied OS patches, it may be wise to relink the binaries ]
Code changes in application that causes invalid/null value conditions where a valid value is expected
Software issues like incorrect Libaries due to invalid environment variables primarily related to PATH and LD_LIBRARY_PATH
安裝OS補丁後,可以重新連結下庫檔案。
如果重新啟動OS並重新連結過庫檔案後,問題依然存在,最好去metalink上查下
目前可以重現該問題的語句
declare
reportDate date:=date '2010-6-25';
begin
update dho_character_timer set state=0 where state=1;
commit;
insert into dho_character_timer
select b.collserver,
a.login_username,
a.char_name,
sum(b.playedtime),
reportDate-1,
1
from (select char_index,
account_index,
login_username,
char_name
from business.dho_game_character
where colltime>=reportDate and colltime
(t.log_out-t.log_in)*24*60*60 as playedtime
from (select collserver,
account_id,
char_id,
log_action,
log_time log_out,
lag(log_time,1)over(partition by account_id,char_id order by log_time) as log_in
from business.dho_log_loginchar
where log_time>=reportDate-2 and log_time
on a.account_index=b.account_id and a.char_index=b.char_id
group by b.collserver,a.login_username,a.char_name;
commit;
end;[@more@]
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23590362/viewspace-1034654/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 雜記-本週工作記錄
- SQL優化工作記錄SQL優化
- 尋找工作仿騙記錄
- 互動設計工作記錄
- 記錄我DBA的工作和生活
- 一月份工作記錄
- 工作記錄2015.3.23
- win10如何關閉工作列歷史記錄_win10工作列歷史記錄怎麼關閉Win10
- 工作記錄-優化大表更新一例優化
- Windows XP 清除工作列隱藏圖示記錄(轉)Windows
- 容器 工作目錄
- tbm實施工作記錄20130826
- 記錄工作過程中一次業務最佳化
- PUTTY 記錄操作記錄
- 域名解析的記錄型別:A記錄、CNAME、MX記錄、NS記錄型別
- SAP BI工作摘錄
- oracle之ORA-03113Oracle
- Cookie記錄瀏覽記錄Cookie
- DNS 系列(二):DNS 記錄及工作方式,你瞭解嗎?DNS
- Xshell 5 記錄操作記錄
- ORA-07445: [kkqtutlSetViewCols()+250]QTTLSView
- git checkout 對工作目錄的影響 —— Git 學習筆記 21Git筆記
- 201312芳烴車間核算SAPTBM工作記錄APT
- 番茄工作法摘錄
- 工作筆記筆記
- 記錄
- ORA-03113解決方法
- 【DATAGUARD 學習】ora-03113
- ORA-03113錯誤分析
- Ora-03113 錯誤分析
- [20181219]記錄自己工作中的錯誤.txt
- 簡單記錄一下新行動硬碟的初始化工作硬碟
- Conti內部聊天記錄暴露勒索軟體團伙工作日常
- apache工作模式總結及網站訪問緩慢處理記錄Apache模式網站
- python記錄下工作後遇到的問題,時間的轉化Python
- ORA-07445: exception encountered: (一)Exception
- ORA-07445錯誤分析
- 淘寶記錄筆記筆記