The Issue of the Day Before

當 mysqldump 丟出 Unknown Table Column 時

mysql -

加上 --column-statistics=0 參數。

mysqldump --column-statistics=0

Why

利用 mysqldump --version 檢查 mysqldump 版本,如果版本大於 v8 則用 --column-statistics=0 來禁用該特性。

How

或在設定檔上增加 column-statistics=0 指示。 /etc/my.cnf/etc/mysql/my.cnf 或找到

+/etc/mysql/conf.d/mysqldump.cnf

[mysqldump]
column-statistics=0
閱讀在雲端