首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

ORACLE10g 自动SGA治理(一)

2012-09-25 
ORACLE10g 自动SGA管理(一)SGA-- 数据库块缓冲高速缓存 (db_cache_size)-- 共享池 (shared_pool_size)-- J

ORACLE10g 自动SGA管理(一)

SGA-- 数据库块缓冲高速缓存 (db_cache_size)-- 共享池 (shared_pool_size)-- Java 池 (java_pool_size)-- 大型池 (large_pool_size)

?

自动共享内存管理示例配置SGA_TARGET(控制SGA的总大小) 设置为非零值SGAshared_pool_size = 0large_pool_size = 0java_pool_size = 0db_cache_size = 0 

?

SQL> select pool, sum(bytes)/1024/1024 Mbytes from v$sgastat group by pool; POOL             MBYTES------------ ----------             303.996315java pool             4shared pool  102.490440large pool           12 DB_CACHE_SIZESQL> select current_size from v$buffer_pool; CURRENT_SIZE------------         296

?

关闭自动大小调整 SGA_TARGET = 0

?

?

热点排行