一、进入sql命令行,找出排队的sql语句
select inst_id,sid,serial#,username uname, status, program, sql_id, SQL_HASH_VALUE sqlhv, sql_child_number chnum, event, blocking_session blks
from gv$session
where wait_class<>'Idle';
将上面sql执行的结果sql_id,放入下列查询
select sql_id, sql_fulltext, hash_value
from gv$sqlarea
where sql_id= '&sql_id';
二、优化器优化
以PLSQL为例,按F5进入优化器
将需要优化的sql输入,并执行
table access full发现全表扫描,增加索引后,再次执行,耗时大大减少