應用mysqldump 對象時須要留意的成績。本站提示廣大學習愛好者:(應用mysqldump 對象時須要留意的成績)文章只能為提供參考,不一定能成為您想要的結果。以下是應用mysqldump 對象時須要留意的成績正文
描寫以下:
用mysqldump 導出 Trigger 的時刻碰到一個成績,貼出來,以避免年夜家出錯。
在履行上面的操作時:
[root@ytt ~]# /usr/local/mysql/bin/mysqldump -S /tmp/mysql1.sock test > test.sql
導出的成果外面含有 Trigger.
[root@ytt ~]# /usr/local/mysql/bin/mysqldump -S /tmp/mysql1.sock -Rdtn test > test_sp.sql
導出的成果外面依然含有 Trigger.
導入的時刻失足:
[root@ytt ~]# /usr/local/mysql/bin/mysql -S /tmp/mysql1.sock --database test < test.sql
[root@ytt ~]# /usr/local/mysql/bin/mysql -S /tmp/mysql1.sock --database test < sp.sql
ERROR 1235 (42000) at line 26: This version of MySQL doesn't yet support 'multiple triggers with the same action time and event for one table'
處理方法:
默許不帶任何參數的時刻 tiggers 值為真,那末我們修正他的值為假,給mysqldump 加上開關: --triggers=false 便可。