摘要:
CREATE TABLE `v` ( `itov` varchar(32) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 mysql> insert into v values('20180119000133312'); Query OK, 1 row affected (0.06 sec) mysql> insert into v ... 阅读全文
摘要:
存储过程: 把若干sql封装起来,起个名字 --过程 把此过程存储在数据库中 --存储过程 create procedure procedureName() begin --sql end$ ###################### show procedure status; 调用call procedure() 声明变量: 格式 declare 变量名 变量类型... 阅读全文
摘要:
set global enforce_gtid_consistency=ON; set global gtid_mode=OFF_PERMISSIVE; set global gtid_mode=ON_PERMISSIVE; set global gtid_mode=ON; ############ 阅读全文
摘要:
http://www.cnblogs.com/wjoyxt/p/6025846.html pt-kill --user 'root' --password 'mysqlpass' --busy-time 10 --match-user="ptkill" --match-info="select" - 阅读全文
摘要:
VBOX 主库:172.16.12.12 从库:172.16.12.11 连接主库 从库:172.16.12.13 连接主库 ########################### 由于从库在同步期间,从库有过操作,gtid会多出自己的uuid记录: 主库:172.16.12.12 dc33da18 阅读全文
摘要:
登博: http://hedengcheng.com/?p=771 兰春:https://keithlan.github.io/2017/06/05/innodb_locks_show_engine/ 运维那点事: ######################################## s 阅读全文
摘要:
https://dev.mysql.com/doc/refman/5.7/en/truncate-table.html truncate 与 delete 的区别? truncate 1、 不能rollback, 隐式提交,会释放空间。 2、数据或者索引损坏,只要test.frm没有坏,也能trun 阅读全文
摘要:
首先要明白SQL的运行流程,方便理解。 http://blog.itpub.net/22664653/viewspace-1210844/ https://tech.meituan.com/mysql-index.html 阿里大神: https://yq.aliyun.com/topic/100? 阅读全文
摘要:
mysql> explain select * from a where num1=2 order by id;+ + + + + + + + + + + + +| id | select_type | table | partitions | type | possible_keys | key 阅读全文
摘要:
http://hatemysql.com/?tag=server_id 一、B-->>A<< C 主库A server_id=11 从库B server_id=12 从库C server_id=12 问题:可以搭建成功么?现象是什么? 网上说的是从库会不断重新连接,本人测试搭建成功,一切正常,也许是 阅读全文