您的位置:首页 > 其它

Heap size xxK exceeds notification threshold解决

2010-03-05 22:24 627 查看
1、发现alert.log告警
Memory Notification: Library Cache Object loaded into SGA
Heap size 2757K exceeds notification threshold (2048K)

2、用sys查看隐藏参数:
select ksppinm, ksppstvl
from x$ksppcv cv, x$ksppi pi
where cv.indx = pi.indx
and pi.ksppinm like '_kgl_large_heap_warning_threshold%';

3、修改此隐含参数

SQL> alter system set "_kgl_large_heap_warning_threshold"=8388608 scope=spfile;

4、重启Oracle服务器
SQL> shutdown immediate
SQL> startup

原因在于Oracle10.2.0.1的Bug,10.2.0.2已经把这个值修改为50M,升级10.2.0.2到也可解决。
转自:http://blog.chinaunix.net/u/13204/showart_2126381.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐