您的位置:首页 > 产品设计 > UI/UE

control file sequential read等待事件

2013-03-19 00:47 387 查看
This is a read from a single copy of the control file. This happens in many cases. For example, while:

Making a backup of the controlfiles

Sharing information (between instances) from the controlfile

Reading other blocks from the controlfiles

Reading the header block

Solutions

Problem:

If wait time is significant, it usually means there's an I/O problem. Find out whether the waits are on particular copy of the controlfile and, if so, whether its I/O path is saturated. The following query can be used to find which controlfile is being accessed. It has to be run when the problem is occurring:

select P1 from V$SESSION_WAIT
where EVENT like 'control file%' and STATE='WAITING';

Possible solutions:

Move the problematic controlfile copy to a less utilized disk. Use Asynchronous I/O if available.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: