Home > Database > Mysql Tutorial > body text

mysql中mysqldump备份与还原数据库命令介绍

WBOY
Release: 2016-06-07 17:52:46
Original
1094 people have browsed it

mysqldump是mysql的一个命令代码,常用来备份数据库或数据表下面我们来介绍mysqldump的用法。

备份数据:

 代码如下 复制代码
mysqldump -u 用户名 -p 密码 数据库名 > XX.sql


数据量大的时候,可以使用gzip压缩一下

 代码如下 复制代码
mysqldump -u 用户名 -p 密码 数据库名 | gzip > XX.sql.gz

恢复数据:

 代码如下 复制代码
mysql -u 用户名 -p 密码 数据库名


从gzip压缩文件中直接恢复

 代码如下 复制代码
gzip
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template