模拟等待事件:db file sequential read

相关知识:

db file sequential read  单块读

optimizer_index_cost_adj 这个初始化参数代表一个百分比,取值范围在1到10000之间.
该参数表示索引扫描全表扫描成本的比较。缺省值100表示索引扫描成本等价转换与全表扫描成本。

模拟实验

创建表(插入数据)和索引

create table test as select * from dba_objects;

insert into test select * from test;

create index test_idx on test(owner);

 

模拟单块读 db file sequential read

alter session set optimizer_index_cost_adj=1;

select count(distinct object_type) from test where owner='SYS';

 

 

posted on   Roc.Sun  阅读(273)  评论(0编辑  收藏  举报

< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

导航

统计

点击右上角即可分享
微信分享提示