码迷,mamicode.com
首页 > 数据库 > 详细

mysqldump导出不包含存储过程

时间:2014-12-03 13:49:01      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   sp   on   文件   数据   log   bs   

mysqldump导出不包含存储过程

 

 

 mysqldump -u 数据库用户名 -p -n -t -d -R --triggers=false 数据库名 > 文件名 

这样单独把存储过程和函数导出

 

然后导入之前 进mysql 设置下

set global log_bin_trust_function_creators=TRUE;

 

否则报错

 ERROR 1418 (HY000) at line 31: This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)

 

再导入即可

mysqldump导出不包含存储过程

标签:style   io   ar   sp   on   文件   数据   log   bs   

原文地址:http://www.cnblogs.com/dyllove98/p/4139750.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!