一SGA
Shared pool tunning
Shared pool的优化应该放在优先考虑因为一个cache miss在shared pool中发生比在data buffer中发生导致的成本更高由于dictionary数据一般比library cache中的数据在内存中保存的时间长所以关键是library cache的优化
Gets(parse)在namespace中查找对象的次数
Pins(execution)在namespace中读取或执行对象的次数
Reloads(reparse)在执行阶段library cache misses的次数导致sql需要重新解析
) 检查v$librarycache中sql area的gethitratio是否超过%如果未超过%应该检查应用代码提高应用代码的效率
Select gethitratio from v$librarycache where namespace=sql area;
) v$librarycache中reloads/pins的比率应该小于%如果大于%应该增加参数shared_pool_size的值
Select sum(pins) executionssum(reloads) cache missessum(reloads)/sum(pins) from v$librarycache;
reloads/pins>%有两种可能一种是library cache空间不足一种是sql中引用的对象不合法
)shared pool reserved size一般是shared pool size的%不能超过%V$shared_pool_reserved中的request misses=或没有持续增长或者free_memory大于shared pool reserved size的%表明shared pool reserved size过大可以压缩
)将大的匿名pl/sql代码块转换成小的匿名pl/sql代码块调用存储过程
)从i开始可以将execution plan与sql语句一起保存在library cache中方便进行性能诊断从v$sql_plan中可以看到execution plans
)保留大的对象在shared pool中大的对象是造成内存碎片的主要原因为了腾出空间许多小对象需要移出内存从而影响了用户的性能因此需要将一些常用的大的对象保留在shared pool中下列对象需要保留在shared pool中
a 经常使用的存储过程
b 经常操作的表上的已编译的触发器
c Sequence因为Sequence移出shared pool后可能产生号码丢失
查找没有保存在library cache中的大对象
Select * from v$db_object_cache where sharable_mem> and
type in (PACKAGEPROCEDUREFUNCTIONPACKAGE BODY) and kept=NO;
将这些对象保存在library cache中
Execute dbms_shared_poolkeep(package_name);
对应脚本dbmspoolsql
)查找是否存在过大的匿名pl/sql代码块两种解决方案
A.转换成小的匿名块调用存储过程
B.将其保留在shared pool中
查找是否存在过大的匿名pl/sql块
Select sql_text from v$sqlarea where command_type= and length(sql_text)>;
)Dictionary cache的优化
避免出现Dictionary cache的misses或者misses的数量保持稳定只能通过调整shared_pool_size来间接调整dictionary cache的大小
Percent misses应该很低大部分应该低于%合计应该低于%
Select sum(getmisses)/sum(gets) from v$rowcache;
若超过%增加shared_pool_size的值
Buffer Cache
)granule大小的设置db_cache_size以字节为单位定义了default buffer pool的大小
如果SGA<Mgranule=M否则granule=M即需要调整sga的时候以granule为单位增加大小并且sga的大小应该是granule的整数倍
) 根据v$db_cache_advice调整buffer cache的大小
SELECT size_for_estimatebuffers_for_estimateestd_physical_read_factorestd_physical_reads
FROM v$db_cache_advice WHERE NAME=DEFAULT AND advice_status=ON
AND block_size=(SELECT Value FROM v$parameter WHERE NAME=db_block_size);
estd_physical_read_factor<=
) 统计buffer cache的cache hit ratio>%如果低于%可以用下列方案解决
◆增加buffer cache的值
◆使用多个buffer pool
◆Cache table
◆为 sorting and parallel reads 建独立的buffer cache
SELECT NAMEvalue FROM v$sysstat WHERE NAME IN (session logical reads
physical readsphysical reads directphysical reads direct(lob));
Cache hit ratio=(physical readsphysical reads directphysical reads direct (lob))/session logical reads;Select (phyvaluedirvaluelobvalue)/logvalue from v$sysstat log v$sysstat phy v$sysstat dir v$sysstat LOB where logname=session logical reads and phyname=physical reads and dirname=physical reads direct and lobname=physical reads direct (lob);
影响cache hit ratio的因素全表扫描应用设计大表的随机访问cache hits的不均衡分布
)表空间使用自动空间管理消除了自由空间列表的需求可以减少数据库的竞争
其他SGA对象
)redo log buffer
对应的参数是log_buffer缺省值与 OS相关一般是K检查v$session_wait中是否存在log buffer waitv$sysstat中是否存在redo buffer allocation retries
A检查是否存在log buffer wait
Select * from v$session_wait where event=log buffer wait ;
如果出现等待一是可以增加log buffer的大小也可以通过将log 文件移到访问速度更快的磁盘来解决
B
Select namevalue from v$sysstat where name in
(redo buffer allocation retriesredo entries)
Redo buffer allocation retries接近小于redo entries 的%如果一直在增长表明进程已经不得不等待redo buffer的空间如果Redo buffer allocation retries过大增加log_buffer的值
C检查日志文件上是否存在磁盘IO竞争现象
Select eventtotal_waitstime_waitedaverage_wait from v$system_event
where event like log file switch completion%;
如果存在竞争可以考虑将log文件转移到独立的更快的存储设备上或增大log文件
D检查点的设置是否合理
检查alertlog文件中是否存在checkpoint not complete
Select eventtotal_waitstime_waitedaverage_wait from v$system_event
where event like log file switch (check%;
如果存在等待调整log_checkpoint_intervallog_checkpoint_timeout的设置
E检查log archiver的工作
Select eventtotal_waitstime_waitedaverage_wait from v$system_event
where event like log file switch (arch%;
如果存在等待检查保存归档日志的存储设备是否已满增加日志文件组调整log_archiver_max_processes
FDB_block_checksum=true因此增加了性能负担(为了保证数据的一致性oracle的写数据的时候加一个checksum在block上在读数据的时候对checksum进行验证)
)java pool
对于大的应用java_pool_size应>=M对于一般的java存储过程缺省的M已经够用了
)检查是否需要调整DBWn
Select total_waits from v$system_event where event=free buffer waits;