MySQL——报错及解决方案
程序员文章站
2022-05-03 11:51:55
本文主要记录了在使用MySQL的过程中遇到的问题以及解决方案。 ......
mysql——报错及解决方案
摘要:本文主要记录了在使用mysql的过程中遇到的问题以及解决方案。
定义timestamp类型的数据
相关日志
1 [warning] timestamp with implicit default value is deprecated. please use --explicit_defaults_for_timestamp server option (see documentation for more details).
解决办法
在配置文件中加入:
1 [mysqld] 2 # explicit_defaults_for_timestamp 3 explicit_defaults_for_timestamp=true
问题说明
mysql5.6.6以前:
如果timestamp类型的列指定值为null,默认为当前timestamp。
如果timestamp类型的列没有指定值为null,也就是没有传值,默认为非null的一个值。
表中第一个timestamp列,如果没有指定值为null、也没有设置默认值,在插入和更新时都会设置为当前时间。
表中第一个timestamp列之后的所有timestamp列,如果没有被定义为null、定义default值,会设置为'0000-00-00 00:00:00'。
mysql5.6.6以后,需要在配置文件里设置 explicit_defaults_for_timestamp=true ,其含义为:
如果timestamp类型的列指定值为null,默认为当前timestamp。
如果timestamp类型的列没有指定值为null,也就是没有传值,默认为null。
声明timestamp类型的列不为能为null,而且没有指定默认值。在插入时timestamp类型的列没有指定值,如果是严格sql模式,会抛出一个错误,如果严格sql模式没有启用,该列会赋值为‘0000-00-00 00:00:00’,同时出现警告。
导入导出权限设置
相关日志
1 [note] --secure-file-priv is set to null. operations related to importing and exporting data are disabled. 2 [warning] insecure configuration for --secure-file-priv: current value does not restrict location of generated files. consider setting it to a valid, non-empty path. 3 [error] failed to access directory for --secure-file-priv. please make sure that directory exists and is accessible by mysql server.
解决办法
在配置文件中加入:
1 [mysqld] 2 # 设置导入导出 3 secure-file-priv=d:\all\mysql\file
问题说明
配置文件里的 secure-file-priv 参数是用来限制将数据导入导出到指定目录的:
当值为null,表示不允许导入导出操作。
当值为具体的文件夹,表示导入导出只能在该目录下操作,目录不存在会报错。
当值没有具体值时,表示不限制导入导出操作的文件夹。
推荐阅读
-
MySQL索引及优化实战教程
-
MySQL主从原理及配置详解
-
Mysql使用索引的正确方法及索引原理详解
-
Mysql数据库从5.6.28版本升到8.0.11版本部署项目时遇到的问题及解决方法
-
看MySQL的参数调优及数据库锁实践有这一篇足够了
-
mint-ui Infinite scroll 重复加载、加载无效的原因及解决方案
-
Linux连接mysql报错:Access denied for user ‘root’@‘localhost’(using password: YES)的解决
-
IIS FTP部分文件上传报错451的原因及解决方法
-
linux下mysql乱码问题的解决方案
-
MySQL主从同步延迟的原因及解决办法