yinl_li 发表于 2018-10-10 10:07:22

mysql 相关故障解决

  今天在source mysqldump 备份文件时,发现导入的过程中报如下的错误:
  ERROR 1231 (42000): Variable 'time_zone' can't be set to the value of 'NULL'
  ERROR 1231 (42000): Variable 'sql_mode' can't be set to the value of 'NULL'
  ERROR 1231 (42000): Variable 'foreign_key_checks' can't be set to the value of 'NULL'
  ERROR 1231 (42000): Variable 'unique_checks' can't be set to the value of 'NULL'
  ERROR 1231 (42000): Variable 'character_set_client' can't be set to the value of 'NULL'
  ERROR 1231 (42000): Variable 'collation_connection' can't be set to the value of 'NULL'
  ERROR 1231 (42000): Variable 'sql_notes' can't be set to the value of 'NULL'
  解决方法:
  mysql> set max_allowed_packet=1024M;--只对当前会话生效
  mysql> source ./xxxx.sql;
  本文出自 “小鱼的博客” 博客,请务必保留此出处http://395469372.blog.51cto.com/1150982/1729451

页: [1]
查看完整版本: mysql 相关故障解决