背景:
导出数据库test库的test表数据出现报错信息:mysqldump: [ERROR] unknown variable 'database=test'.

原来是my.cnf参数文件配置了以下内容:
[client]
user=test
port=3306
database=test

将database参数注释掉,就不再出现报错。

[root@node01 tmp]# mysqldump -utest -pmysql test test > /tmp/ttt.sql
mysqldump: [Warning] Using a password on the command line interface can be insecure.
Warning: A partial dump from a server that has GTIDs will by default include the GTIDs of all transactions, even those that changed suppressed parts of the database. If you don't want to restore GTIDs, pass --set-gtid-purged=OFF. To make a complete dump, pass --all-databases --triggers --routines --events.

  

相关文章:

  • 2021-09-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-26
  • 2021-12-01
猜你喜欢
  • 2021-07-25
  • 2021-11-11
  • 2021-04-20
  • 2021-09-10
  • 2021-07-14
  • 2021-11-14
相关资源
相似解决方案