mysql 从WorkBench导出数据库时的问题

gt0wga4j  于 2023-03-28  发布在  Mysql
关注(0)|答案(1)|浏览(410)

我试图从workbench导入数据库,但每次完成时都出现此错误:

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.

之后,.sql文件被创建,但我无法打开它,因为它说有一个无效参数
有人能帮帮我吗?我在做备份的时候真的很糟糕。
先谢了。

nbnkbykc

nbnkbykc1#

要解决这个问题,你需要使用--set-gtid-purchased =OFF选项在MySQL转储过程中禁用GTID。

mysqldump --set-gtid-purged=OFF -u [username] -p[password] 
[database_name] > [output_file].sql

相关问题