随笔分类 -  数据库

摘要:select * from dba_constraints where constraint_name = 'SYS_C0082752' 阅读全文
posted @ 2020-05-22 13:44 yvioo 阅读(697) 评论(0) 推荐(0) 编辑
摘要:修改my.cnf,需重启mysql。 在 [MySQLd] 部分添加一句(如果存在,调整其值就可以): max_allowed_packet=512M 查找MySql的配置文件my.cnf所在路径参考:https://www.cnblogs.com/pxblog/p/13701211.html 阅读全文
posted @ 2020-05-12 11:52 yvioo 阅读(3459) 评论(0) 推荐(0) 编辑
摘要:打开mysql 的配置文件 my.cnf 查找方式:https://www.cnblogs.com/pxblog/p/13701211.html 在[mysqld]后面修改或添加 # The maximum amount of concurrent sessions the MySQL server 阅读全文
posted @ 2020-05-12 11:30 yvioo 阅读(951) 评论(0) 推荐(0) 编辑
摘要:AB复制是一种数据复制技术,是myslq数据库提供的一种高可用、高性能的解决方案。 AB复制的模式:一主一从 、一主多从、双主、多主多从 复制的工作原理:要想实现ab复制,那么前提是master上必须开启二进制日志1)首先master将数据更新记录到二进制日志文件中2)从slave start开始, 阅读全文
posted @ 2020-03-16 00:42 yvioo 阅读(518) 评论(0) 推荐(0) 编辑
摘要:报错原因意思是说:mysql5.7版本中有了一个STRICT mode(严格模式),而在此模式下默认是不允许设置日期时间的值为全0值的,所以想要 解决这个问题,就需要修改sql_mode的值。 修改全局设置 mysql> set @@global.sql_mode=(select replace(@ 阅读全文
posted @ 2020-03-02 19:25 yvioo 阅读(1108) 评论(0) 推荐(0) 编辑
摘要:MySQL出现 You do not have the SUPER privilege and binary logging is enabled报错 解决方案: 1、用root用户登录:mysql -u root -p 2、设置参数log_bin_trust_function_creators为1 阅读全文
posted @ 2020-02-23 00:50 yvioo 阅读(4217) 评论(0) 推荐(0) 编辑