Restore MySQL DB with Unicode characters (Arabic and Kurdish) in .gz format(使用 .gz 格式的 Unicode 字符(阿拉伯语和库尔德语)恢复 MySQL 数据库)
问题描述
我有一个 .gz 格式的 MySQL 备份文件,它是由 cPanel 中的备份向导创建的.当备份向导完成恢复时,即使我在 PhpMyadmin 中将排序规则更改为不同的 UTF-8 编码,也无法正确显示带有阿拉伯语和库尔德语字符的内容.
I have a MySQL backup file in .gz format that was created by the backup wizard in cPanel.
When the restoration is done by the backup wizard, contents with Arabic and Kurdish characters do not show correctly, even though I changed the collation to different UTF-8 encoding in PhpMyadmin.
例如,DB中的真实数据为:كامپى زانكۆ,恢复后的数据显示为:بÙâØ²Ø§ÙÙÛÛÛâ
For example, the real data in DB is : كامپى زانكۆ and the data showed after the restoring become to this : بÙâØ²Ø§ÙÙÛÛâ
推荐答案
这是在创建和导出数据库时由不一致的编码方案引起的一个相当普遍的问题.这是解决它的最简单方法:
This is a fairly common problem caused by inconsistent encoding schemes when creating and exporting the database. Here is the simplest way to solve it:
- 导入您的备份文件
- 再次导出,但使用
latin1编码 - 手动编辑导出的文件,将所有出现的
latin1更改为utf8. - 导入编辑过的文件.
这篇关于使用 .gz 格式的 Unicode 字符(阿拉伯语和库尔德语)恢复 MySQL 数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 .gz 格式的 Unicode 字符(阿拉伯语和库尔德语
基础教程推荐
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- 在多列上分布任意行 2021-01-01
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- oracle区分大小写的原因? 2021-01-01
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
