MySQL remote Export and Import

Source: Internet
Author: User
MySQL remote export and import MySQL remote connection commands can be used to remotely import and export data, which is not limited by the size of 2 MB file in phpMyAdmin. You can also specify the data encoding to ensure that the imported data will not contain garbled characters, the specific command is as follows: mysqldump -- default-character-set = gb2312-192.168.1.1-uroot-pxxxxxx mydatabase> D:/data. SQL

-H is followed by an IP address,-u is followed by a user name,-P is followed by a password, mydatabase is the database name, D:/data. SQL is the exported data file. After execution, the database is backed up to the local device. You can use scheduled tasks to back up the database regularly.

The following command is similar to how to restore data:
MySQL -- default-character-set = gb2312-h192.168.1.1-uroot-pxxxxxx mydatabase <D:/data. SQL
After the execution, the database will be restored, and there will be no garbled characters.

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.