MySQL command mysqldump: Backing up the database

Source: Internet
Author: User

Http://c.biancheng.net/cpp/html/1458.html

The mysqldump command is used to back up the database.

The mysqldump command executes under the DOS [Url=file://\\mysql\\bin]\\mysql\\bin[/url] directory.

1) Export the entire database (the export file is present in the Mysql\bin directory by default)
?? mysqldump-u user name-p database name > exported file name
??? Mysqldump-u user_name-p123456 database_name > Outfile_name.sql

2) export a table
??? mysqldump-u user name-P database name Table name > exported file name
??? mysqldump-u user_name-p database_name table_name > OUTFILE_NAME.SQL

3) Export a database structure
??? Mysqldump-u user_name-p-d–add-drop-table database_name > Outfile_name.sql
???-D No data –add-drop-table add a drop table before each create statement

4) Export with language parameters
??? mysqldump-uroot-p–default-character-set=latin1–set-charset=gbk–skip-opt database_name > Outfile_ Name.sql

For example, back up the AAA library to file back_aaa:
[email protected] root]# Cd/home/data/mysql
[email protected] mysql]# mysqldump-u root-p--opt aaa > Back_aaa

MySQL command mysqldump: Backing up the database

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.