oracle 9i中sga介绍
sga:System Global Area 一个instance对应1个sga
shared pool 共享池
library cache 编译sql语句性能
data dictionary cache 存储数据库控制信息的
database buffer cache 存储数据文件,按块存储由db_block_size存储
redo log buffer
large pool
java pool
sga_max_size最大上限
granules是sga分配内存的基本单位,<128M是4M,>128M是16M
pga:Program Global Area 一个pga对应1个后台进程
show sga;
ps -ef | grep oracle
查看granules
select component,granule_size from v$sga_dynamic_components;