- 论坛徽章:
- 0
|
conn sys/xxxxx@orcl as sysdba
alter system set db_file_multiblock_read_count=256;
create table t1 as select * from dba_objects;
insert into t1 select * from t1;
insert into t1 select * from t1;
insert into t1 select * from t1;
commit;
alter session set events '10046 trace name context forever,level 12';
alter system flush buffer_cache;
select count(*) from t1;
然后查看.trc文件
WAIT #1: nam='db file scattered read' ela= 1476 file#=1 block#=82313 blocks=128 obj#=52634 tim=1318680417236172
blocks=128就代表你的操作系统支持最大 多数据块 读取值。 |
|