10. mysql Import and Export Database, mysql Import and Export

Source: Internet
Author: User
Tags import database mysql import

10. mysql Import and Export Database, mysql Import and Export
Import and Export mysql database commands in linux


1. Use the mysqldump command to export the database

(Note: If this command is not available, run this command in the mysql installation path ):

1. Export data and table structure:
Mysqldump-u username-p Password Database Name> database name. SQL
# Mysqldump-uroot-p abc>/'path'/abc. SQL

Note: After you press enter, you will be prompted to enter the password.

2. export only the table structure
Mysqldump-u username-p password-d Database Name> database name. SQL
# Mysqldump-uroot-p-d abc>/'path'/abc. SQL

Note: After you press enter, you will be prompted to enter the password.

Ii. Import the database 1. First create an empty Database
Mysql> create database abc;


2. Import Database
Method 1:
(1) Select a database
Mysql> use abc;
(2) set database Encoding
Mysql> set names utf8;
(3) import data (note the path of the SQL file)
Mysql> source/home/abc. SQL;
Method 2:
Mysql-u username-p Password Database Name <database name. SQL
# Mysql-uabc_f-p abc <abc. SQL


Note: After you press enter, you will be prompted to enter the password.


Suggestion: you are welcome to give your opinions and suggestions.






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.