mysql主库5.6 从库5.7 解决从库延迟
mysql从库为mysql5.6版本,会出现数据延迟现象,因为从库在通过主库复制时单行的,从库升级到mysql5.7并进行配置可以有效解决从库数据延迟问题,因为mysql5.7版本的数据库,通过主库复制时并行的
mysql5.7.18起没有my.cnf
从5.7.18开始不在二进制包中提供my-default.cnf文件
mysql5.7修改密码password字段变成了authentication_string字段
mysql5.7 开始新版的mysql数据库下的user表中已经没有password字段了保持密码的字段变成了authentication_string字段
mysql存储过程(3)参数用法 in, out, inout作用和特点
如果仅仅想把数据传给 MySQL 存储过程,那就使用“in” 类型参数;如果仅仅从 MySQL 存储过程返回值,那就使用“out” 类型参数;如果需要把数据传给 MySQL 存储过程,还要经过一些计算后再传回给我们,此时,要使用“inout” 类型参数。
mysql存储过程(2)select into from 用法
select count(id) into max_num from test_test; 查询id总数,查询结果存入变量max_num
mysql存储过程(1)随机增加10万数据
mysql存储过程(1)随机增加10万数据,select count(id) into max_num from test_test; #查询id总数,查询结果存入变量max_num
mysql5.6升级到mysql5.7
[ERROR] Missing system table mysql.proxies_priv; please run mysql_upgrade to create it”之类的错误。虽然这个错误修复起来很简单,却不容易引起注意。
mysql主从复制Last_IO_Errno: 1236
mysql主从复制Last_IO_Errno: 1236,Last_IO_Error: Got fatal error 1236 from master when reading data from binary log: 'Slave can not handle replication events with the checksum that master is configured to log; the first event 'mysql-bin.000004' at 120, the las
mysql 主从复制Slave_SQL_Running:No Last_Errno:1062 Last_Error:Error'Duplicate entry 解决办法
mysql 主从复制Slave_SQL_Running:No Last_Errno:1062 Last_Error:Error'Duplicate entry 解决办法