mysqldump导出数据出现问题
Posted 星辰一幕
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysqldump导出数据出现问题相关的知识,希望对你有一定的参考价值。
利用mysqldump导出数据时提示warning,A partial dump from a server that has GTIDs
[email protected]:~$ mysqldump -uroot -p sdxdb > sdxdb.sql
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.
关于GTID是5.6以后,加入了全局事务 ID (GTID) 来强化数据库的主备一致性,故障恢复,以及容错能力。
官方给的:A global transaction identifier (GTID) is a unique identifier created and associated with each transaction committed on the server of origin (master).
所以可能是因为在一个数据库里面唯一,但是当导入其他的库就有可能重复。所有会有一个提醒。
可以通过添加--set-gtid-purged=off 或者–gtid-mode=OFF这两个参数设置。
很有肯能是在导入库中重新生产GTID,而不用原来的。
[email protected]:~$ mysqldump -uroot --set-gtid-purged=off -p sdxdb > sdxdb.sql #这样就ok了!
以上是关于mysqldump导出数据出现问题的主要内容,如果未能解决你的问题,请参考以下文章