|
Yong Huang 发表于 2011-11-29 23:21 ![]()
"db file sequential read" is usually but not always associated with single block index read. In your ...
Yong Huang:
执行计划如下:
select * from table(dbms_xplan.display_cursor('&sql_id','','allstats'));
1 SQL_ID 0g9psqu0jud2n, child number 0
2 -------------------------------------
3 delete from ac_imessage m where m.imessage_id = 7720158
4
5 Plan hash value: 3651533437
6
7 ---------------------------------------------------
8 | Id | Operation | Name | E-Rows |
9 ---------------------------------------------------
10 | 0 | DELETE STATEMENT | | |
11 | 1 | DELETE | AC_IMESSAGE | |
12 |* 2 | INDEX UNIQUE SCAN| PK_IMESSAGE | 1 |
13 ---------------------------------------------------
14
15 Predicate Information (identified by operation id):
16 ---------------------------------------------------
17
18 2 - access("M"."IMESSAGE_ID"=7720158)
19
20 Note
21 -----
22 - Warning: basic plan statistics not available. These are only collected when:
23 * hint 'gather_plan_statistics' is used for the statement or
24 * parameter 'statistics_level' is set to 'ALL', at session or system level
25
执行 select event, p1, p2, p3, seq# from v$session where sid = $sid;
event : db file sequential read
p1: 在几个文件号之间不停变换
P2: 在不停地变换
P3: 为1
#seq: 不停地增加
按版主的意思就是系统设置有错误?
|
|