1,使用mysqldump時報錯(1064),這個是因為mysqldump版本太低與當前數(shù)據(jù)庫版本不一致導致的。
mysqldump: Couldn't execute 'SET OPTION SQL_QUOTE_SHOW_CREATE=1': You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near 'OPTION SQL_QUOTE_SHOW_CREATE=1' at line 1 (1064)
[root@bastion-IDC ~]# mysqldump --version
mysqldump Ver 10.13 Distrib 5.1.61, for redhat-linux-gnu (x86_64)
[root@bastion-IDC ~]# mysql //或者登陸mysql,select version();也可查看版本
Server version: 5.6.25-log Source distribution
。。。。。
這樣的話必須知道m(xù)ysqldump的絕對路徑,在mysql的安裝目錄下有。
2,導出時指定字符集,報錯
Character set 'utf-8' is not a compiled character set and is not specifie .
--default-character-set=utf-8
這個是因為字符集錯了。是--default-character-set=utf8
3,導出時提示warning,A partial dump from a server that has GTIDs
[root@bastion-IDC ~]# mysqldump -uroot -p xqsj_db > xqsj_db20160811.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) 來強化數(shù)據(jù)庫的主備一致性,故障恢復,以及容錯能力。
官方給的:A global transaction identifier (GTID) is a unique identifier created and associated with each transaction committed on the server of origin (master).
所以可能是因為在一個數(shù)據(jù)庫里面唯一,但是當導入其他的庫就有可能重復。所有會有一個提醒。
可以通過添加--set-gtid-purged=off 或者–gtid-mode=OFF這兩個參數(shù)設置。
很有肯能是在導入庫中重新生產GTID,而不用原來的。
[root@bastion-IDC ~]# mysqldump -uroot --set-gtid-purged=off -p xqsj_db > xqsj_db20160811.sql #這樣就ok了!
以上這篇詳談mysqldump數(shù)據(jù)導出的問題就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持腳本之家。
您可能感興趣的文章:- Windows下實現(xiàn)MySQL自動備份的批處理(復制目錄或mysqldump備份)
- MySQL數(shù)據(jù)遷移使用MySQLdump命令
- mysql備份腳本 mysqldump使用方法詳解
- 詳解 linux mysqldump 導出數(shù)據(jù)庫、數(shù)據(jù)、表結構
- 淺談mysqldump使用方法(MySQL數(shù)據(jù)庫的備份與恢復)
- 8種手動和自動備份MySQL數(shù)據(jù)庫的方法
- linux實現(xiàn)mysql數(shù)據(jù)庫每天自動備份定時備份
- 詳解Mysql自動備份與恢復的幾種方法(圖文教程)
- CentOS系統(tǒng)下如何設置mysql每天自動備份
- Centos7中MySQL數(shù)據(jù)庫使用mysqldump進行每日自動備份的編寫