1. 查看Oracle数据库是否存在IO相关的竞争等待有下面三种方法:
2. 对于出现IO问题的一些处理方法:
3. Oracle中最常见的一些IO相关的等待事件:
数据文件IO相关的等待事件包括:
控制文件IO相关的等待事件包括:
重做日志文件相关IO等待事件包括:
高速缓存区IO相关等待事件包括:
4. 查找全表扫描的sql语句:select sql_text from v$sqltext t, v$sql_plan p where t.hash_value=p.hash_value and p.operation=‘TABLE_ACCESS‘ and p.options=‘FULL‘ order by p.hash_value, t.piece;
查找Fast Full Index扫描的sql语句可以使用:select sql_text from v$sqltext t, v$sql_plan p where t.hash_value=p.hash_value and p.operation=‘INDEX‘ and p.options=‘FULL SCAN‘ order by p.hash_value, t.piece;
原文地址:http://www.cnblogs.com/PerOpt/p/3737327.html