oracle数据库优化辅助SQL语句

具体详情请看下文代码分析。

--查询正在执行的sql语句


select osuser 电脑登录身份, 
program 发起请求的程序, 
username 登录系统的用户名, 
schemaname, 
b.cpu_time 花费cpu的时间, 
status, 
b.sql_text 执行的sql,
b. 
from v$session a 
left join v$sql b on a.sql_address = b.address 
and a.sql_hash_value = b.hash_value 
order by b.cpu_time desc;


--查询比较耗cpu的sql语句
select *
from (select v.sql_id,
v.child_number,
v.sql_text,
v.elapsed_time,
v.cpu_time,
v.disk_reads,
rank() over(order by v.cpu_time desc) elapsed_rank
from v$sql v) a
where elapsed_rank <= 10;

--查询比较耗磁盘的sql语句

select * from (select v.sql_id,
v.child_number, v.sql_text, 
v.elapsed_time, v.cpu_time, 
v.disk_reads, 
rank() over(order by v.disk_reads desc) elapsed_rank 
from v$sql v) a where elapsed_rank <= 10;

--查询比较慢的sql语句

select * from (
select parsing_user_id,executions,sorts
command_type,disk_reads,sql_text from v$sqlarea order by disk_reads desc
)where rownum<10

--oracle 对未提交事务的查询

select a.sid,a.blocking_session,a.last_call_et,a.event,
object_name,
dbms_rowid.rowid_create(1,data_object_id,rfile#,row_wait_block#,row_wait_row#) "rowid" ,
c.sql_text,c.sql_fulltext
from v$session a,v$sqlarea c ,dba_objects,v$datafile
where a.blocking_session is not null
and a.sql_hash_value = c.hash_value 
and row_wait_obj#=object_id and file#=row_wait_file#;

ps:oracle常见sql语句优化

1、* 号引起的执行效率

尽量减少使用select * 来进行查询,当你查询使用*,
数据库会进行解析并将*转换为全部列。

select count(si.student_id)
from student_info si(student_id为索引)

select count(*) from student_info si
执行时.上面的语句明显会比下面没有用索引统计的语句要快

2、避免在索引列上使用计算.

where 子句中,如果索引列是函数的一部分.优化器将不使用索引而使用全表扫描.

举例 :

低效:

select … from dept where sal * 12 > 25000;

高效 :

select … from dept where sal > 25000/12;

3、用 >= 替代 >

高效 :

select * from emp where deptno >=4

低效 :

select * from emp where deptno >3

两者的区别在于 , 前者 dbms 将直接跳到第一个 dept 等于 4 的记录而后者将首先定位到 deptno=3 的记录并且向前扫描到第一个 dept 大于 3 的记录 .

4 、 用 union 替换 or ( 适用于索引列 )

通常情况下 , 用 union 替换 where 子句中的 or 将会起到较好的效果 . 对索引列使用 or 将造成全表扫描 . 注意 , 以上规则只针对多个索引列有效 . 如果有 column 没有被索引 , 查询效率可能会因为你没有选择 or 而降低 . 在下面的例子中 , loc_id 和 region 上都建有索引 .

高效 :

select loc_id , loc_desc , region

from location

where loc_id = 10

union

select loc_id , loc_desc , region

from location

where region = “melbourne”

低效 :

select loc_id , loc_desc , region

from location

where loc_id = 10 or region = “melbourne”

如果你坚持要用 or, 那就需要返回记录最少的索引列写在最前面 .

5、用 in 来替换 or

这是一条简单易记的规则,但是实际的执行效果还须检验,在 oracle8i 下,两者的执行路径似乎是相同的.

低效 :

select …. from location where loc_id = 10 or loc_id = 20 or loc_id = 30

高效

select … from location where loc_in in (10,20,30);

6、避免在索引列上使用 is null 和 is not null

7、where执行顺序

where执行会从至下往上执行

select *

from student_info si –学生信息表

where si.school_id=10 –学院id

and si.system_id=100–系id

摆放where子句时,把能过滤大量数据的条件放在最下边

8、from字段中的优化:

oracle安照从右到左的顺序加载表数据,应该把可以排除数据最多的表放到后面(基础表)。

比如,在关联查询中,把课程表放到后面,成绩表放到前面,因为课程表数据一般比较少,关联的时候可以快速的过滤掉一些成绩数据。

9、索引失效

1、运算导致的索引失效

2、类型转换导致的索引失效

3、在索引列上进行计算引起的问题

4、 is not null引起的问题(student_id为索引)

5、order by导致索引失效(student_id为索引)

6、自动选择索引

7、 !=导致索引失效

8、%导致的索引失效

(0)
上一篇 2022年3月22日
下一篇 2022年3月22日

相关推荐