您的位置:首页 > 其它

ORA-00600:[KSMASG1], [4032], [4032] 错误!

2008-03-17 09:43 302 查看
alert.log 显示:
ORA-00600: internal error code, arguments: [KSMASG1], [4032], [4032], [], [], [], [], []
trace file 显示:
*** SESSION ID:(97.4384) 2008-03-16 18:07:41.011
=================================
Begin 4031 Diagnostic Information
=================================
The following information assists Oracle in diagnosing
causes of ORA-4031 errors. This trace may be disabled
by setting the init.ora parameter _4031_dump_bitvec = 0
======================================
Allocation Request Summary Information
======================================
Current information setting: 00654fff
Dump Interval=300 seconds SGA Heap Dump Interval=3600 seconds
Last Dump Time=03/16/2008 18:07:40
Allocation request for: ioc_allocate_pal
Heap: c00000002bbbde48, size: 4032
******************************************************
HEAP DUMP heap name="sga heap" desc=c00000002de43030
extent sz=0xfe0 alt=200 het=32767 rec=9 flg=-126 opc=0
parent=0000000000000000 owner=0000000000000000 nex=0000000000000000 xsz=0x0
...
应该是内存分配不足,再上METALINK上查看:
1. Check if you have the JAVAVM installed:
SELECT SUBSTR(comp_id,1,15) comp_id, status, SUBSTR(version,1,10) version, SUBSTR(comp_name,1,30) comp_name FROM dba_registry;
COMP_ID STATUS VERSION COMP_NAME --------------- ----------- ---------- ------------------------------
CATALOG VALID 9.2.0.5.0 Oracle9i Catalog Views CATPROC VALID 9.2.0.5.0 Oracle9i Packages and Types CATJAVA VALID 9.2.0.5.0 Oracle9i Java Packages
JAVAVM VALID 9.2.0.5.0 JServer JAVA Virtual Machine ...
2. Check the value for the init.ora parameter JAVA_POOL_SIZE:
show parameter java_pool
NAME TYPE VALUE
------------------------------------ ----------- -----------
java_pool_size big integer 0
3. Increase the size of the JAVA_POOL_SIZE, e.g. to 100 Mb:
ALTER SYSTEM SET java_pool_size=100M SCOPE = SPFILE;
SHUTDOWN immediate
STARTUP

function doHelpTag(helpTag){
var helperFrame;
helperFrame = document.getElementById("helpTag");
//helperFrame.src='f?p=200:99:2087100527571539165::NO::P99_HELP_TAG:'+helpTag;
if (helperFrame.contentDocument) {
helperFrame.contentDocument.location.replace('f?p=200:99:2087100527571539165::NO::P99_HELP_TAG:'+helpTag);
} else {
helperFrame.Document.location.replace('f?p=200:99:2087100527571539165::NO::P99_HELP_TAG:'+helpTag);
}
}

if (self.location.href != top.location.href){
top.location.href = self.location.href;
}


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: