【故障-ORACLE】rdbms ipc message timeout解释

简介: sys@GZKNEW_SQL> select sid,event,P1TEXT,state from v$session_wait where event not in ('SQL*Net message from client');       SID EVEN...

sys@GZKNEW_SQL> select sid,event,P1TEXT,state from v$session_wait where event not in ('SQL*Net message from client');

 

    SID EVENT                          P1TEXT                         STATE

------- ------------------------------ ------------------------------ -------------------

…………………………………………

   2719 rdbms ipc message              timeout                        WAITING

   2720 rdbms ipc message              timeout                        WAITING

   2724 rdbms ipc message              timeout                        WAITING

   2725 ASM background timer                                          WAITING

   2729 rdbms ipc message              timeout                        WAITING

   2731 rdbms ipc message              timeout                        WAITING

   2733 rdbms ipc message              timeout                        WAITING

…………………………………………

通过以上sql查询到大量rdbms ipc message timeout等待,此事件是空闲事件,解释如下:

The background processes (LGWR, DBWR, LMS0) use this event to indicate that they are idle and are waiting for the foreground processes to send them an IPC message to do some work.

Wait Time: Up to 3 seconds. The parameter timeout shows the true sleep time.

 

相关文章
|
5月前
|
运维 Oracle 关系型数据库
服务器数据恢复-raid5故障导致上层oracle数据库故障的数据恢复案例
服务器数据恢复环境: 一台服务器中有一组由24块FC硬盘组建的raid5磁盘阵列,linux操作系统+ext3文件系统,服务器上层部署有oracle数据库。 服务器故障&检测: raid5阵列中有两块硬盘出现故障掉线,导致服务器上层卷无法挂载,oracle数据库无法正常使用。 通过管理后台查看服务器中硬盘的状态,显示有两块硬盘处于离线状态。
|
SQL 监控 Oracle
oracle故障脚本收集
个人工作经验整理的,仅供参考
333 0