描述如下:
用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 即可。