Loading

上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 20 下一页
摘要: 11GR2版本之后,私网之间的通讯开始使用haip进行通讯,Oracle集群启动时会在每个私网网卡上绑定一个169.254网段的ip地址,每一个网卡都同时承担实例之间的通讯,当其中一个私网网卡出现问题,该私网网卡上的haip立即漂移到状态正常的网卡上,并继续提供服务。 在Oracle rac核心技术 阅读全文
posted @ 2021-08-23 16:54 李行行 阅读(481) 评论(0) 推荐(0) 编辑
摘要: gipc在rac中的功能简介 1.发现集群的私网网卡并对私网网卡进行检查,如果正常rank值为99,如果网卡状态不正常rank值为0或-1、 2.通过集群网络发现远端节点私网网卡信息,并建立联系--这个过程是建立在mdnsd进程通过广播的方式将节点信息发布 3.负责监控私网网卡监控,当私网网卡出现故 阅读全文
posted @ 2021-08-23 14:56 李行行 阅读(326) 评论(0) 推荐(0) 编辑
摘要: [grid@rac1 ~]$ oclumon manage -get master replica Master = rac2Replica = rac1 Done 阅读全文
posted @ 2021-08-22 15:57 李行行 阅读(537) 评论(0) 推荐(0) 编辑
摘要: 应客户要求,配置告警信息,通过crontab命令来进行调用,配置完成之后,crontab任务一直无法调用,日志文件/var/log/cron有调用信息 解决: 脚本中添加一下命令,调用环境变量 #set -x source ~/.bash_profile 阅读全文
posted @ 2021-08-18 15:54 李行行 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 1.执行python安装命令如下报错 [root@oracle11g mysql-utilities-1.6.5]# python setup.py install Traceback (most recent call last): File "setup.py", line 21, in <mo 阅读全文
posted @ 2021-08-18 14:10 李行行 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 执行iotop -u -mysql报告 [root@oracle11g support-files]# iotop -u mysql File "/usr/sbin/iotop", line 10 except ImportError, e: ^ SyntaxError: invalid synta 阅读全文
posted @ 2021-08-17 20:51 李行行 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 根据业务需要,有些时候我们需要修改回话参数,但是应用代码无法进行修改,我们可以通过一下两种方式来进行修改 一:通过连接字符串--19c可行 1.通过字符串直接连接数据库 在19c上测试,这种方式是可行的,但是在11g上测试未果 [oracle@localhost ~]$ sqlplus dbmon/ 阅读全文
posted @ 2021-08-17 20:39 李行行 阅读(354) 评论(0) 推荐(0) 编辑
摘要: SQL> set serveroutput on SQL> declare 2 cursor c_date is 3 select hire_date from employees; 4 v_date date; 5 v_day varchar2(20); 6 begin 7 open c_date 阅读全文
posted @ 2021-01-22 16:27 李行行 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 在变量赋值的方法中,select into只能为返回单行数据的变量进行赋值 SQL> set serveroutput on SQL> declare 2 v_date date; 3 begin 4 select hire_date into v_date from employees where 阅读全文
posted @ 2021-01-22 15:17 李行行 阅读(353) 评论(0) 推荐(0) 编辑
摘要: 查看要修改的数据 SQL> select * from t1; DATE1 IDENTIFY 22-JAN-21 372928193501213223 通过update修改date1对应的日期 SQL> update t1 set date1=(select to_date(substr(ident 阅读全文
posted @ 2021-01-22 09:03 李行行 阅读(186) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 20 下一页