如何检查oracle services 切换过 table(gv$(cursor(select * from v$diag_alert_ext)))

Rac Services used for fail over.

User195957 Posts: 125

Oct 3, 2011 3:53PM edited Oct 6, 2011 12:33PM 6 commentsAnswered

Hi all,How to check if any failed over services are running on other node instead of original node.How I can check on which date it got failed over to other node?

Please let me know the command or sql which can list time of failed over services.

I tried srvctl service status -d db

I also tried:
COLUMN instance_name FORMAT a13
COLUMN host_name FORMAT a9
COLUMN failover_method FORMAT a15
COLUMN failed_over FORMAT a11
SELECT DISTINCT
v.instance_name AS instance_name,
v.host_name AS host_name,
s.failover_type AS failover_type,
s.failover_method AS failover_method,
s.failed_over AS failed_over
FROM vinstance v, vsession s
But did not get the desired output.
Regards.

FlagQuoteOff TopicLike

Answers

----RAC one node

Yes, I need to find out when dtabase services switch over from one node of RAC , and this sql helps

select ORIGINATING_TIMESTAMP, MESSAGE_TEXT from table(gv(cursor(select \* from vdiag_alert_ext))) where ORIGINATING_TIMESTAMP >sysdate-0.1 and MESSAGE_TEXT like '%service%';

相关推荐
dishugj6 小时前
【oracle】19c集群巡检问题
数据库·oracle
知识分享小能手6 小时前
Oracle 19c入门学习教程,从入门到精通,Oracle 其他数据对象 —— 语法详解与综合实践(11)
数据库·学习·oracle
·云扬·11 小时前
深入理解MySQL事务:ACID特性、隔离级别与MVCC原理
数据库·mysql·oracle
傻啦嘿哟11 小时前
用Pydantic验证和解析配置数据:比手写if更可靠
网络·数据库·oracle
小天源11 小时前
麒麟V10互联网安装Oracle11g教程
oracle·oracle 11g·麒麟v10
x***r15112 小时前
oracle11.2.0.4安装步骤详解(附配置与连接教程)
oracle
理智的煎蛋17 小时前
达梦数据库全流程操作指南
数据库·oracle
UrSpecial18 小时前
IM项目——文件管理子服务
服务器·数据库·oracle
文档搬运工19 小时前
ORA-20001: Latest xml inventory is not loaded into table
oracle
Mr Robot19 小时前
数据库概述
数据库·oracle