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 即可。
觉得文章有用?立即: 和朋友一起 共学习 共进步!

猜您喜欢

发表评论

电子邮件地址不会被公开。 必填项已用 * 标注

*

您可以使用这些 HTML 标签和属性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>