mysql的导出和导入

来源:互联网 发布:淘宝店铺可以改天猫么 编辑:程序博客网 时间:2024/06/05 02:25
You may also pipe the output to gzip:
mysqldump --user=abc --password=abc | gzip > backup.sql.gz

To execute on the other servers, without uncompressing, use the following command:
zcat backup.sql.gz | mysql --user=abc --password=abc
原创粉丝点击