Solve MySQL import and export data garbled problem

Source: Internet
Author: User

Recently, on Linux to export data with mysqldump, put on the Windows system import will appear in Chinese garbled, and then will lead to the appearance: Unknown MySQL Server host and can ' t connect to the server error.

To resolve MySQL import and export data garbled problem is the unified import and export encoding, Linux default is UTF8 encoding, and Windows is GBK encoding, so there will be the above garbled problem.

Solve MySQL import and export data garbled problem

The first thing to do is to determine the encoding format of the data you are exporting, and you need to add--default-character-set=utf8 when using mysqldump, such as the following code:

Mysqldump-uroot-p--default-character-set=utf8 dbname tablename > Bak.sql

Then you should also use--default-character-set=utf8 when importing data:

Mysql-uroot-p--default-character-set=utf8 dbname < Bak.sql

This unified coding solves the problem of the garbled data migration in MySQL.

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.