发布时间:2017-06-29 09:37:32
1. reset master reset slave change master 都会导致Retrieved_Gtid_Set: 被清空 如果重新接收了binlog Retrieved_Gtid_Set:会冲新的事物id 开始2. Executed_Gtid_Set 不为空 gtid_purged 无法设置, reset master 会清空Executed_Gtid_Set.........【阅读全文】
发布时间:2017-06-26 16:42:00
搭建1主2从 架构mha 进行测试1. 报错如下masterha_master_switch --master_state=alive --conf=/etc/mha/app1.cnf --new_master_host=172.16.1.79 --orig_master_is_new_slave --interactive=0原因: 确认是由于监控主从状态的用户和主从复制用户缺少reload 权限,grant 就可以了,报错也可以切换.........【阅读全文】
发布时间:2017-06-20 16:01:33
今天insert into table select * from table 报错 ERROR 1292 (22007): Truncated incorrect DOUBLE value: 'open' 解决表示通过create table like 创建,表结构一样的,研究后发现 where 字段条件给的是数字条件,但是这个字段是字符型字段而且distinct 值里面有 字符open例如: &nbs.........【阅读全文】
发布时间:2017-06-15 16:54:46
1. 查看当前连接的数据库show con_name;2. 查看所有pdbshow pdbs;3. 直接shutdown 是关闭的cdb,当然pdb 也关了, cdb 和pdb 共用spfile 和redo control file ,但是不共用系统表空间,aux temp undo 等数据文件archive log 开启 关闭也是全局的.........【阅读全文】
发布时间:2017-06-04 09:53:10
mysqlbinlog --start-position 639576 --stop-position=639745 --base64-output=decode-rows -v mysql-bin.000011需要从639576 到639745 才能正确解析出语句,不能从639653 到639745# at 639576 --开始字节偏移量#170603 9:38:01 server id 114 end_log_pos 639653 CRC32 0x654.........【阅读全文】