博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Script:RAC Failover检验脚本loop.sh
阅读量:6337 次
发布时间:2019-06-22

本文共 1209 字,大约阅读时间需要 4 分钟。

以下脚本可以用于验证RAC中FAILOVER的可用性:
loop.sh  nohup sqlplus su/su@failover @verify.sql &     sleep 1  nohup sqlplus su/su@failover @verify.sql &     sleep 1  nohup sqlplus su/su@failover @verify.sql &     sleep 1  nohup sqlplus su/su@failover @verify.sql &     sleep 1verify.sql (检验SQL)  REM  set pagesize 1000  REM  the following query is for TAF connection verification  col sid format 999  col serial# format 9999999  col failover_type format a13  col failover_method format a15  col failed_over format a11  select sid, serial#, failover_type, failover_method, failed_over    from v$session where username = 'SU';  REM  the following query is for load balancing verification  select instance_name from v$instance;  exit  REM you can also combine two queries:  col inst_id format 999  col sid format 999  col serial# format 9999999  col failover_type format a13  col failover_method format a15  col failed_over format a11  select inst_id, sid, serial#, failover_type, failover_method,         failed_over from gv$session where username = 'SU';  REM  a simple select to see the distribution of users when testing   REM  connection load balancing  select inst_id, count(*) from gv$session group by inst_id;用法:./loop.sh

转载地址:http://qpxoa.baihongyu.com/

你可能感兴趣的文章
不用Visual Studio,5分钟轻松实现一张报表
查看>>
(译)如何使用cocos2d和box2d来制作一个Breakout游戏:第一部分
查看>>
计算机图形学(一) 图形系统综述
查看>>
持续集成(CI)- 几种测试的区别(摘录)
查看>>
多用户虚拟Web3D环境Deep MatrixIP9 1.04发布
查看>>
求高手,求解释
查看>>
[MSSQL]NTILE另类分页有么有?!
查看>>
winform datagridview 通过弹出小窗口来隐藏列 和冻结窗口
查看>>
Jquery闪烁提示特效
查看>>
最佳6款用于移动网站开发的 jQuery 图片滑块插件
查看>>
C++ String
查看>>
获取系统托盘图标的坐标及文本
查看>>
log4j Test
查看>>
HDU 1255 覆盖的面积(矩形面积交)
查看>>
SQL数据库无法附加,提示 MDF" 已压缩,但未驻留在只读数据库或文件组中。必须将此文件解压缩。...
查看>>
第二十一章流 3用cin输入
查看>>
在workflow中,无法为实例 ID“...”传递接口类型“...”上的事件“...” 问题的解决方法。...
查看>>
获取SQL数据库中的数据库名、所有表名、所有字段名、列描述
查看>>
Orchard 视频资料
查看>>
简述:预处理、编译、汇编、链接
查看>>