High Waits on 'Db File Sequential Read' Due to Table Lookup Following Index Access (文档 ID 875472.1)

In this Document

 Symptoms
 Cause
 Solution
 References

APPLIES TO:

Oracle Server - Enterprise Edition - Version 8.0.3.0 to 11.2.0.2 [Release 8.0.3 to 11.2]
Information in this document applies to any platform.

SYMPTOMS

A query can wait on 'db file sequential read' for a long time even if the execution plan appears to be optimal. 
This usually happens when the result set of index scan is large.

For example:

SELECT D
FROM BIG_TABLE
WHERE A = 1253
AND B in ('CA', 'CO')
AND C > 210 ;


Rows    Row Source Operation
------- ---------------------------------------------------
 215431 TABLE ACCESS BY INDEX ROWID BIG_TABLE (cr=880191 pr=430780 pw=0 time=2293667056 us) <<<
3582275  INDEX RANGE SCAN BIG_TABLE_IDX (cr=664748 pr=218595 pw=0 time=352506821 us)

Elapsed times include waiting on following events:
  Event waited on                             Times   Max. Wait  Total Waited
  ----------------------------------------   Waited  ----------  ------------
  SQL*Net message to client                   14363        0.00          0.02
  db file sequential read                    461688        1.15       2254.55 <<<
  SQL*Net message from client                 14363        0.01          9.77
  SQL*Net break/reset to client                   1        0.00          0.00
...

 

CAUSE

In most cases like this, the execution of the query waits on "TABLE ACCESS BY INDEX ROWID" much longer than on INDEX SCAN. It is because the random access to the table rows is much more expensive than index scan.

 

SOLUTION

You can try one or more of the following.

 

1. Check if there is a better index or plan. You may need to re-design index configuration.

 

2. Try table full scan. Full scan often runs faster than Index scan, though its CBO cost is higher than the cost of Index scan.

SELECT /*+ FULL(BIG_TABLE) */  D 
FROM BIG_TABLE 
WHERE A = 1253 
AND B in ('CA', 'CO') 
AND C > 210 ;

 

3. Create a concatenated index to avoid the table access if the query has only a few columns of the table in SELECT and WHERE clauses. 

For example:

CREATE INDEX <INDEX_NAME> ON BIG_TABLE (A, B, C, D);

 NOTE : This can only be applied to SELECT for the table. If the query updates the table, this will not help.

 

4. Move the table into the tablespace with a larger block size.  A larger block has more rows in it, so it may help to reduce block I/O.

    And it will also be helpful to reorganize the table so that the index may have a smaller clustering factor.

 

5. Consider increasing buffer cache so that more table blocks can be cached. It is a good idea to use keep buffer pool if the table is frequently accessed.

Note 76374.1 Multiple Buffer Pools

 

6. Consider using IOT(Index Organized Table). IOT may reduce I/O because it stores data in a B*Tree index structure.
   For example, if the column 'A' is the primiary key of BIG_TABLE, you can try to create IOT as follows.
   
   create table BIG_TABLE (A number primary key, B char(2), C number, D varchar2(10)) 
   organization index;

 

7. Consider using parallel execution if there is sufficient free resource(CPU, memory) in the server.
   This option does not reduce I/O. But, this may help to reduce execution time.

 

8. Bad disk I/O can be a reason. In this case, improve the I/O of devices where the table resides. This requires help from a system administrator.

REFERENCES

NOTE:34559.1 - WAITEVENT: "db file sequential read" Reference Note
NOTE:76374.1 - Multiple Buffer Pools
 
 

相关内容

   
 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值