10g里共享池的大小
2008年10月8日,对于相关性的检查
目标:
--------------------------------
本公告说明了,在10g中shared_pool_size的参数值变化。
应用范围
--------------------------------
DBA和开发人员
在10g中shared_pool_size的值的正确设置。
-------------------------------------------------------
10g前,对于元数据的内部开销分配如同数据结构对于进程,会话没有被包含在shared_pool_size参数里面。正因为如此,分配给共享池的实际内存高于shared_pool_size参数的值。
例如:
SQL> select * from v$version;
BANNER
----------------------------------------------------------------
Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production
PL/SQL Release 9.2.0.1.0 - Production
CORE 9.2.0.1.0 Production
TNS for Solaris: Version 9.2.0.1.0 - Production
NLSRTL Version 9.2.0.1.0 - Production
SQL> show parameter shared_pool_size
NAME VALUE
----------------------- -------------
-shared_pool_size 33554432
SQL> select sum(bytes) from V$SGASTAT where pool = 'shared pool';
SUM(BYTES)
----------
54525952
正如你可以看到的,SHARED_POOL_SIZE〜=33 MB,但实际共享池分配是〜54= MB。从10G开始,内部元数据开销分配包括在SHARED_POOL_SIZE参数值里面。
BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Prod
PL/SQL Release 10.1.0.2.0 - Production
CORE 10.1.0.2.0 Production
TNS for 32-bit Windows: Version 10.1.0.2.0 - Production
NLSRTL Version 10.1.0.2.0 - Production
SQL> show parameter shared_pool_size
NAME VALUE
------------------- ---------------
shared_pool_size 80M
SQL> select round(sum(bytes)/(1024*1024),2) size_mb
2 from V$SGASTAT where pool = 'shared pool';
SIZE_MB
----------
80
这种变化不良反应,可能会导致在不具有相同数量的内存分配给共享池其他组件(如库高速缓存和行缓存等)如果你设置的SHARED_POOL_SIZE在10g之前的版本使用相同的值。因此,我们需要按照以下步骤在10G中设置正确的值。
1) select sum(bytes) from V$SGASTAT where pool = 'shared pool';Run this query in 8i/9i database before upgrading to 10g
2) Set value of shared_pool_size = value from above query.( Do not use the value from init.ora for shared_pool_size parameter)
你也可以在10g中使用共享内存调整功能。