今天在测试数据库发现alert出现警告错误
Memory Notification: Library Cache Object loaded into SGA
Heap size 2919K exceeds notification threshold (2048K)
KGL object name :select
service_name, uio_waits, uio_time, con_waits, con_time,
adm_waits, adm_time, net_waits, net_time
from
(select
stat1.service_name service_name, db_time, uio_waits, uio_time,
con_waits, con_time, adm_waits, adm_time, net_waits, net_time
from
(select s1.service_name,
sum(decode(s1.stat_name, 'DB time', s1.diff, 0)) db_time
from
(select e.service_name service_name,
e.stat_name stat_name,
Tue May 6 11:12:12 2014
Memory Notification: Library Cache Object loaded into SGA
Heap size 2757K exceeds notification threshold (2048K)
Details in trace file /u01/app/Oracle/admin/amidb/udump/amidb_or
后来在网上查了一下原来是在Oracle 10.2.0.1版本数据库中隐含参数_kgl_large_heap_warning_threshold默认值是2M,该参数控制加载到内存中对象的大小,当加载的对象大于2M时,就会在alert警告文件中进行提示。2M的默认大小相对太小,因此在10.2.0.1版本中可能很容易遇到这个报错信息。该参数默认值在10.2.0.2版本中进行了调整,调整到了50M。
alter system set "_kgl_large_heap_warning_threshold"=52428800 scope=spfile;
System altered.
- 大小: 26.6 KB
分享到:
相关推荐
Navicat 远程连接 Oracle 时提示oracle library is not loaded 所需文件
在使用Navicat Premium 15这样的数据库管理工具连接Oracle数据库时,有时会遇到“oracle library is not loaded”的错误提示,这通常是由于缺少或不兼容的Oracle客户端库文件导致的。Oracle Call Interface (OCI) 是...
用Navicat连接Oracle数据库时报错:Oracle library is not loaded 是oci.dll版本不对。因为Navicat是通过Oracle客户端连接Oracle服务器的,Oracle的客户端分为两种,一种是标准版,一种是简洁版,即Oracle Install ...
关于Navicat Premium 12安装 以及连接Oralce时报:Oracle library is not loaded! 的问题-附件资源
然而,用户在使用Navicat连接Oracle数据库时,可能会遇到“library is not loaded”的错误提示,这通常与oci.dll文件有关。oci.dll是Oracle Call Interface (OCI) 的动态链接库,它是Oracle数据库客户端连接到服务器...
【DPI-1047: 64-bit Oracle Client library cannot be loaded: "D:\app\xyg\product\11.2.0\client_1\bin\oci...】 2、网上找了很多教程,没能解决,后面靠自己把问题解决,接下来讲一下如何解决。 解决方案: 1、...
oracle library oci.dll could not be loaded-附件资源
当看到类似 “MemoryNotification: Library Cache Object loaded into SGA” 的消息时,这通常意味着数据库缓存出现了问题。可以通过调整缓存大小、优化 SQL 查询等方式来解决问题。 ##### 3.5 java.lang....
- **MemoryNotification: Library Cache Object loaded into SGA**:内存管理问题,可能需要调整 SGA 设置。 - **java.lang.NoClassDefFoundError**:表明类路径配置存在问题,需检查类路径设置。 - **ORA-313620...
适合最新Navicate 15 64位使用,解决连接Oracle 11g 64位时 Oracle library is not loaded,经测试instantclient-basic-windows.x64-11.2.0.4.0死活连接不上 不要被误导。换12.1完美解决。 32位的navicate 可以用...
Oracle Instant Client_12_1 Downloads 有效解决oracle library is not loaded的问题 有效解决ORA-28547:connection to server failed,probable Oracle Net admin error的问题
当用户尝试使用64位Navicat连接Oracle数据库时,可能会遇到“Oracle Library is not loaded”的错误提示,这通常是因为缺少Oracle Call Interface (OCI)库。 OCI是Oracle提供的一个应用程序编程接口,用于非Oracle...
本文档中记录了QtCreator5.12下使用MVCS2017_64编译器连接Oracle12.2数据库时遇到的问题及解决方法,如: QSqlDatabase: QOCI driver not loaded,包括驱动的添加,数据库的安装配置,经过亲测通过,每一步都配有...