当前位置: 代码迷 >> 综合 >> Unknown table ‘column_statistics‘ in information_schema (1109)
  详细解决方案

Unknown table ‘column_statistics‘ in information_schema (1109)

热度:41   发布时间:2024-02-28 09:53:15.0

mysql8.0以上用 mysqldump进行备份的时候报错

脚本是这样的

#!/bin/bash
mysqldump -h127.0.0.1 -uroot -proot 数据库名称 > /usr/local/1_$(date +%Y%m%d_%H%M%S).sql

mysql8.0版本此命令会报错

Unknown table 'COLUMN_STATISTICS' in information_schema (1109)

此处需要添加新参数***–column-statistics=0***,格式如下:

mysqldump --column-statistics=0 -h127.0.0.1 -uroot -proot 数据库名称 > /usr/local/1_$(date +%Y%m%d_%H%M%S).sql

**切记:从win复制到linux下的脚本会报错,如下错误

		 执行.sh脚本时出现$’\r’: 未找到命令是因为命令直接从windows 复制过来导致的**

解决
  安装 yum install dos2unix
  
  执行 dos2unix * .sh 进行转换
  
  再次执行即可

  相关解决方案