mysql数据库导入导出


1、导出数据库sunchao


mysqldump -uroot -p12345 sunchao > sunchao.sql


2、导出数据库sunchao的数据库结构


mysqldump -uroot -p12345 -d --add-drop-table sunchao > sunchao1.sql


3、导出数据库sunchao中的vendors表


mysqldump -uroot -p12345 sunchao vendors > vendors.sql


4、导出mysql里面的函数或者存储过程


mysqldump -uroot -p12345 -ntd -R sunchao > sunchao2.sql


-d 表示--no-create-db, -n表示--no-data, -t表示--no-create-info, -R表示导出function和procedure。所以上述代码表示仅仅导出函数和存储过程,不导出表结构和数据。


网上有人有这个问题我自己导入导出没有遇见下面这个问题:在这里我粘过来了供参考


http://blog.csdn.net/lisonghua/article/details/7242243


这样导出的内容里,包含了trigger。再往mysql中导入时就会出问题,错误如下:
ERROR 1235 (42000) at line **: This version of MySQL doesn't yet support ‘multiple triggers with the same action time and event for one table’
导出时需要把trigger关闭。代码为

mysqldump -uroot -p12345 -ntd -R --triggers=false sunchao > sunchao2.sql

样导入时,会出现新的问题:
ErrorCode:1418
This function has none of DETERMINISTIC, NOSQL, or READS SQL DATA inits declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)
解决方法是,在/etc/my.cnf中找到[mysqld],在它下面添加这样一行:
log-bin-trust-function-creators=1




导入数据库


方法一:


mysql -uroot -p12345 sunchao < sunchao1.sql


mysql -uroot -p12345 sunchao < sunchao.sql



方法二:使用source命令


mysql -uroot -p12345


mysql>use sunchao;


mysql>source /root/sunchao.sql