Data Guard Wait Events
This note describes the wait events that monitor the performance of the log
transport modes that were specified on the primary database with the ARCH, LGWR,
SYNC, and ASYNC attributes on the LOG_ARCHIVE_DEST_n initialization parameter.
The wait events and associated timing information are displayed by the
V$SYSTEM_EVENT view, as follows: Wait events for standby destinations configured with the ARCH attribute:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "ARCH wait on ATTACH" This wait event monitors the amount of time spent by all archiver
processes to spawn an RFS connection. "ARCH wait on SENDREQ" This wait event monitors the amount of time spent by all archiver
processes to write the received redo to disk as well as open and close
the remote archived redo logs. "ARCH wait on DETACH" This wait event monitors the amount of time spent by all archiver
processes to delete an RFS connection. Wait events for standby destinations configured with the LGWR SYNC attributes:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "LGWR wait on ATTACH" This wait event monitors the amount of time spent by all log writer
processes to spawn an RFS connection. "LGWR wait on SENDREQ" This wait event monitors the amount of time spent by all log writer
processes to write the received redo to disk as well as open and close
the remote archived redo logs. "LGWR wait on DETACH" This wait event monitors the amount of time spent by all log writer
processes to delete an RFS connection. Wait events for standby destinations configured with the LGWR ASYNC attributes:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "LNS wait on ATTACH" This wait event monitors the amount of time spent by all network servers
to spawn an RFS connection. "LNS wait on SENDREQ" This wait event monitors the amount of time spent by all network servers
to write the received redo to disk as well as open and close the remote
archived redo logs. "LNS wait on DETACH" This wait event monitors the amount of time spent by all network servers
to delete an RFS connection. "LGWR wait on full LNS buffer" This wait event monitors the amount of time spent by the log writer
(LGWR) process waiting for the network server (LNS) to free up ASYNC
buffer space. If buffer space has not been freed in a reasonable amount
of time, availability of the primary database is not compromised by
allowing the archiver process (ARCn) to transmit the redo log data. This
wait event is not relevant for destinations configured with the LGWR
SYNC=PARALLEL attributes. Wait events for standby destinations configured with either the LGWR ASYNC or
LGWR SYNC=PARALLEL attributes:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "LGWR wait on LNS" This wait event monitors the amount of time spent by the log writer (LGWR)
process waiting to receive messages on KSR channels from the network
server. "LNS wait on LGWR" This wait event monitors the amount of time spent by the network server
waiting to receive messages on KSR channels from the log writer (LGWR)
process. "LGWR-LNS wait on channel" This wait event monitors the amount of time spent by the log writer (LGWR)
process or the network server processes waiting to receive messages on
KSR channels.Data Guard Wait Events
Data Guard Wait Events的更多相关文章
- Oracle Data Guard Protection Modes
Maximum Availability This protection mode provides the highest level of data protection that is poss ...
- Oracle Data Guard的配置
概述 Oracle Data Guard 是针对企业数据库的最有效和最全面的数据可用性.数据保护和灾难恢复解决方案.它提供管理.监视和自动化软件基础架构来创建和维护一个或多个同步备用数据库,从而保护数 ...
- 场景7 Data Guard
场景7 Data Guard 官方文档 :Oracle Data Guard Concepts and Administration 用于数据容灾,通过主备库同步(主库将redo日志传送到备库,一个 ...
- 【原】Configuring Oracle Data Guard In Physical Standby Database
作者:david_zhang@sh [转载时请以超链接形式标明文章] http://www.cnblogs.com/david-zhang-index/p/5042640.html参照文档:https ...
- DG - 开启Active Data Guard
在配置active data guard之前,phycial standby必须处于以下两个状态之一: (1)standby处于mount状态,并且redo apply正在运行中 (2)standby ...
- DATA GUARD架构(一)
Data Guard传输-应用架构.>图1-1 ------------------------------------------------------------ 重做传输架构>图1 ...
- ORACLE 11g 用Duplicate恢复Data Guard 备库详细过程
1.先查找备库控制文件路径 先在备库上找出控制文件的路径,通过和主库一样,不过为了以防万一,还是check为好. SQL> select name from v$controlfile; NA ...
- Oracle 11gR2 Database和Active Data Guard迁移案例
客户一套核心系统由一台Oracle Database 11.2.0.3.4单机和一台Active Data Guard组成,分别运行在两台PC服务器上,Oracle Linux 5.8 x86_64b ...
- data guard折腾记一
终于有空闲的机器腾出来了,生产环境上的一套Oracle环境终于可以鸟枪换炮了,生产环境有Data Guard,为了减少停机时间,而且避免重新构建Data Guard的麻烦(其实也不麻烦,就是浪费时间) ...
随机推荐
- Python Web学习笔记之TCP、UDP、ICMP、IGMP的解释和区别
TCP与UDP解释 TCP---传输控制协议,提供的是面向连接.可靠的字节流服务.当客户和服务器彼此交换数据前,必须先在双方之间建立一个TCP连接,之后才能传输数据.TCP提供超时重发,丢弃重复数据, ...
- P4009 汽车加油行驶问题
P4009 汽车加油行驶问题 最短路 清一色的spfa....送上一个堆优化Dijkstra吧(貌似代码还挺短) 顺便说一句,堆优化Dj跑分层图灰常好写 #include<iostream> ...
- Jsoup解析网页html
Jsoup解析网页html 解析网页demo: 利用Jsoup获取截图中的数据信息: html代码片段: <!-- 当前基金档案\计算\定投\开户 start --> <div cl ...
- 关于linux中的上下文切换
对于linux中的上下文一直以来没有特别的关注其合理范围应该是多少(关于上下文切换的概念,网上已经有很多解释了,再次不再重复),白天偶尔注意到了一下,晚上特地看了下白天负载和和收盘后的负载如下(服务器 ...
- 第十一章 非对称加密算法--DH
注意:本节内容主要参考自<Java加密与解密的艺术(第2版)>第8章“高等加密算法--非对称加密算法” 11.1.非对称加密算法 特点: 发送方和接收方均有一个密钥对(公钥+私钥),其中公 ...
- 第四章 消息摘要算法--SHA
注意:本节内容主要参考自<Java加密与解密的艺术(第2版)>第6章“验证数据完整性--消息摘要算法” 4.1.SHA 原理:消息摘要长度(可以定量为加密后的字符串的长度)越长,安全性越高 ...
- 通过java代码对kylin进行cube build
转:http://www.cnblogs.com/hark0623/p/5580632.html 通常是用于增量 代码如下: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 ...
- HDU 2222 Keywords Search(AC自动机模板题)
http://acm.hdu.edu.cn/showproblem.php?pid=2222 题意:给出多个单词,最后再给出一个模式串,求在该模式串中包含了多少个单词. 思路: AC自动机的模板题. ...
- 机器学习-数据可视化神器matplotlib学习之路(一)
直接上代码吧,说明写在备注就好了,这次主要学习一下基本的画图方法和常用的图例图标等 from matplotlib import pyplot as plt import numpy as np #这 ...
- [STL][C++]VECTOR
参考:http://blog.csdn.net/hancunai0017/article/details/7032383 vector(向量): C++中的一种数据结构,确切的说是一个类.它相当于一个 ...