MySQL database backup and Restoration

Source: Internet
Author: User

When a database is used, database backup is performed. When a database fails to be started due to a serious error or data loss, data can be restored in a timely and effective manner. This article briefly introduces how to back up and restore a MySQL database.

Back up database

Back up a database using the mysqldump command

# If you want to back up the game database: mysqldump-u root-p game> game_backup. SQL # if you want to back up all the databases: mysqldump-u root-p -- all-databases> all_backup. SQL

Restore database

1. Use the mysql command to restore the database

Restore game_backup. SQL to the game Database:

Mysql-u root-p game <game_backup. SQL

2. Use the source command to restore the database

If the database is too large, we recommend that you use the source command.

Mysql> source game_backup. SQL

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.