一、sga
1、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需要重新解析。
1) 检查v$librarycache中sql area的gethitratio是否超过90%,如果未超过90%,应该检查应用**,提高应用**的效率。
select gethitratio from v$librarycache where namespace=’sql area’;
2) v$librarycache中reloads/pins的比率应该小于1%,如果大于1%,应该增加参数shared_pool_size的值。
select sum(pins) “executions”,sum(reloads) “cache misses”,sum(reloads)/sum(pins) from v$librarycache;
reloads/pins>1%有两种可能,一种是library cache空间不足,一种是sql中引用的对象不合法。
3)shared pool reserved size一般是shared pool size的10%,不能超过50%。v$shared_pool_reserved中的request misses=0或没有持续增长,或者free_memory大于shared pool reserved size的50%,表明shared pool reserved size过大,可以压缩。
4)将大的匿名pl/sql**块转换成小的匿名pl/sql**块调用存储过程。
5)从9i开始,可以将execution plan与sql语句一起保存在library cache中,方便进行性能诊断。从v$sql_plan中可以看到execution plans。
6)保留大的对象在shared pool中。大的对象是造成内存碎片的主要原因,为了腾出空间许多小对象需要移出内存,从而影响了用户的性能。因此需要将一些常用的大的对象保留在shared pool中,下列对象需要保留在shared pool中:
a. 经常使用的存储过程;
b. 经常操作的表上的已编译的触发器。
c. sequence,因为sequence移出shared pool后可能产生号码丢失。
查找没有保存在library cache中的大对象:
select * from v$db_object_cache where sharable_mem>10000 and type in ('package','procedure','function','package body') and kept='no';
将这些对象保存在library cache中:
execute dbms_shared_
对应脚本:不在保留到library cache中:
execute dbms_shared_
7)查找是否存在过大的匿名pl/sql**块。两种解决方案:
a.转换成小的匿名块调用存储过程。
b.将其保留在shared pool中。
查找是否存在过大的匿名pl/sql块:
select sql_text from v$sqlarea where command_type=47 and length(sql_text)>500;
8)dictionary cache的优化
避免出现dictionary cache的misses,或者misses的数量保持稳定,只能通过调整shared_pool_size来间接调整dictionary cache的大小。
percent misses应该很低:大部分应该低于2%,合计应该低于15%
select sum(getmisses)/sum(gets) from v$rowcache;
若超过15%,增加shared_pool_size的值。
2、buffer cache
1)granule大小的设置,db_cache_size以字节为单位定义了default buffer pool的大小。
如果sga<128m,granule=4m,否则granule=16m,即需要调整sga的时候以granule为单位增加大小,并且sga的大小应该是granule的整数倍。
2) 根据v$db_cache_advice调整buffer cache的大小。
select size_for_estimate,buffers_for_estimate,estd_physical_read_factor,estd_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<=1
3) 统计buffer cache的cache hit ratio>90%,如果低于90%,可以用下列方案解决:
增加buffer cache的值;
使用多个buffer pool;
cache table;
为 sorting and parallel reads 建独立的buffer cache;
select name,value from v$sysstat where name in ('session logical reads','physical reads','physical reads direct','physical reads direct(lob)')
cache hit ratio=1-(physical reads-physical reads direct-physical reads direct (lob))/session logical reads;
select 1-( from v$sysstat log, v$sysstat phy, v$sysstat dir, v$sysstat lob where 'session logical reads' and 'physical reads' and 'physical reads direct' and 'physical reads direct (lob)';
影响cache hit ratio的因素:
全表扫描;应用设计;大表的随机访问;cache hits的不均衡分布。
4)表空间使用自动空间管理,消除了自由空间列表的需求,可以减少数据库的竞争。
3、其他sga对象。
1)redo log buffer
对应的参数是log_buffer,缺省值与 os相关,一般是500k。检查v$session_wait中是否存在log buffer wait,v$sysstat中是否存在redo buffer allocation retries
a、检查是否存在log buffer wait:
select * from v$session_wait where event=’log buffer wait’ ;
如果出现等待,一是可以增加log buffer的大小,也可以通过将log 文件移到访问速度更快的磁盘来解决。
b、select name,value from v$sysstat where name in (‘redo buffer allocation retries’,’redo entries’)
redo buffer allocation retries接近0,小于redo entries 的1%,如果一直在增长,表明进程已经不得不等待redo buffer的空间。如果redo buffer allocation retries过大,增加log_buffer的值。
c、检查日志文件上是否存在磁盘io竞争现象。
select event,total_waits,time_waited,**erage_wait from v$system_event where event like ‘log file switch completion%’;
如果存在竞争,可以考虑将log文件转移到独立的、更快的存储设备上或增大log文件。
d、检查点的设置是否合理。
检查文件中,是否存在‘checkpoint not complete’;
select event,total_waits,time_waited,**erage_wait from v$system_event where event like ‘log file switch (check%’;
如果存在等待,调整log_checkpoint_interval、log_checkpoint_timeout的设置。
e、检查log archiver的工作。
select event,total_waits,time_waited,**erage_wait from v$system_event where event like ‘log file switch (arch%’;
如果存在等待,检查保存归档日志的存储设备是否已满,增加日志文件组,调整log_archiver_max_processes。
f、db_block_checksum=true,因此增加了性能负担。(为了保证数据的一致性,oracle的写数据的时候加一个checksum在block上,在读数据的时候对checksum进行验证)
2)j**a pool
对于大的应用,j**a_pool_size应》=50m,对于一般的j**a存储过程,缺省的20m已经够用了。
3)检查是否需要调整dbwn
select total_waits from v$system_event where event=’free buffer waits’;
oracle高级
loop循环结构。looppl sql exit when 判断条件 当判断条件为真时退出 end loop 例子 用loop输出一年中的每一天 create table rili day date declare time date begintime to date 2014 01 01 yyy...
ORACLE性能AWR报告的使用和分析
为满足业务的运行要求,高性能要求是目前it系统普遍面临的最棘手问题,尤其是客户面对着目前越来越庞大系统和数据,系统整合 数据大集中似乎成了趋势。针对系统性能优化的诊断和分析,数据库方向又是其中的重要一环,本文将针对oracle中常用的性能诊断工具awr报告,进行分析说明。一 oracle性能诊断工具...
高级复习Oracle
数据库 操作练习 高级 oracle 9i 考试时采用 操作方式,后台连接实际的数据库,前台是用网页 的sql plus,因此所创建的数据库对象将保存在数据库中。如果创建已经存在的对象,则会报错,应该先删除该对象再重新创建。要求不使用commit if replace等语句。书写完语句后执行。一般语...