Home Database Mysql Tutorial MySQL如何修改字符集utf8改为utf8mb4_MySQL

MySQL如何修改字符集utf8改为utf8mb4_MySQL

May 30, 2016 pm 05:11 PM
character set

在实行sql server 向 mysql 迁移数据时,报错:

 

Incorrect string value: '\xF0\x9F\x98\x8A' 

 

原因是mysql 采用的是 utf8 的字符集,而该字符集最多占用三个字节,而一些 表情 需要占用 4个字节,所以需要将 utf8 改成 utf8mb4。

 

原始配置为:

 

#mysql 5.5 新增参数 
character_set_server=utf8    
collation_server=utf8_bin
Copy after login

我将 character_set_server=utf8 改为:character_set_server=utf8mb4,重启mysql 却报错:

发生系统错误 1067 进程意外终止

但是查看错误日志,却没有显示是什么错误信息。有倒腾了一会儿,想到是不是 collation_server 也要修改成 utf8mb4_bin,测试的结果果然如此。

所以要注意在将 MySQL字符集 utf8 改为 utf8mb4 时,一定要注意 collation_server 也要同时修改!

干脆将 default-character-set=utf8mb4 也改成了算了。

最后的字符配置如下:

[mysql]
default-character-set=utf8mb4
init_connect='set names utf8mb4'

[mysqld]
character_set_server=utf8mb4
collation_server=utf8mb4_bin
Copy after login

 

 

修改之后,启动成功。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Detailed explanation of how to modify the character set of Oracle database Detailed explanation of how to modify the character set of Oracle database Mar 02, 2024 pm 03:18 PM

Detailed explanation of how to modify the character set of Oracle database Oracle database is a powerful relational database management system that supports multiple character sets, including Simplified Chinese character set, Traditional Chinese character set, English character set, etc. In practical applications, you may encounter situations where you need to modify the database character set. This article will introduce in detail the method of modifying the Oracle database character set and provide specific code examples for readers' reference. 1. Check the current database character set. Before modifying the database character set, you first need to check the current database character set.

What are the tips for learning MySQL's character set and collation settings? What are the tips for learning MySQL's character set and collation settings? Jul 31, 2023 pm 03:18 PM

What are the tips for learning MySQL’s character set and collation settings? As a popular relational database management system, MySQL has very important character set and collation settings when processing data. Properly setting character sets and collation rules can ensure data integrity and consistency, while also improving query and sorting efficiency. This article will introduce some tips for learning MySQL character set and collation settings, and provide corresponding code examples. 1. Character set setting skills to view the current character set settings. Use the following command to view the current character set settings.

Oracle database character set modification steps and precautions Oracle database character set modification steps and precautions Mar 02, 2024 pm 09:27 PM

Title: Oracle Database Character Set Modification Steps and Precautions In the Oracle database, the character set is a very important setting, which determines the character types and encoding methods that can be supported by the data stored in the database. Sometimes, we need to modify the character set to adapt to new business needs or solve some data storage problems. This article will introduce in detail the steps and precautions for modifying the Oracle database character set, and will also provide specific code examples. 1. Character set modification steps: 1. Back up the database: before doing any data

MySql character set and sorting rules: how to solve the problem of Chinese garbled characters MySql character set and sorting rules: how to solve the problem of Chinese garbled characters Jun 16, 2023 am 08:51 AM

MySql is a very popular database management system, especially suitable for large-scale data storage and processing. However, when using MySql, we often encounter the problem of Chinese garbled characters. This is because the character set and collation of MySql are not set correctly. The following will introduce how to solve the problem of Chinese garbled characters. 1. MySql’s character set and collation rules MySql supports multiple character sets and collation rules. The character set determines which characters can be stored in the database, and the collation determines how these characters are sorted and compared.

Detailed introduction to Oracle character set modification and garbled code repair methods Detailed introduction to Oracle character set modification and garbled code repair methods Mar 03, 2024 am 09:00 AM

The character set setting in Oracle database is very important for data storage and retrieval. Correctly setting the character set can ensure the correctness and integrity of the data. In actual applications, sometimes due to some uncontrollable factors, character set mismatch may lead to garbled characters. This article will introduce in detail how to modify the character set in the Oracle database, and give specific methods and code examples to repair garbled characters. 1.Oracle character set modification method 1.1 To view the current character set in the Oracle database, you can use the following

How to verify specific character set using regular expression in golang How to verify specific character set using regular expression in golang Jun 24, 2023 pm 01:00 PM

In golang, validating a specific character set using regular expressions is a common task. This task involves the problem of finding out whether a specific string of characters is present in a set of characters. In this article, I will show you how to validate a specific character set using regular expressions in golang. First, to use regular expressions in golang, you need to import the regular expression package. In golang, the standard regular expression package is regexp. You can use the following code to import: import(&quo

Detailed explanation of character sets and collation rules in MySQL Detailed explanation of character sets and collation rules in MySQL Jun 14, 2023 pm 02:01 PM

MySQL is a widely used relational database management system. In order to support character sets and collation rules between different languages ​​and cultures, MySQL provides multiple character set and collation settings. Character set and collation are very important concepts in MySQL and play a vital role in the data storage and query process. Let's take a closer look at the character sets and collation rules in MySQL. 1. Character set The character set in MySQL determines how data is stored in the database. Common character sets include A

PHP returns the name of the character set PHP returns the name of the character set Mar 21, 2024 am 09:56 AM

This article will explain in detail the name of the character set returned by PHP. The editor thinks it is very practical, so I share it with you as a reference. I hope you can gain something after reading this article. 1. Character set in PHP The character set in PHP is used to represent a collection of letters, numbers and symbols used in text data. It defines how byte sequences are mapped to character values. PHP supports multiple character sets, including: ASCII: American Standard Code for Information Interchange, containing 7-bit characters and used in text-based systems. UTF-8: Universal Character Set Transformation Format - 8-bit, a variable-length character set widely used in modern systems. UTF-16: Universal Character Set Transformation Format - 16 bits, a fixed-length character set used to represent large numbers of characters

See all articles