How Do I Ensure that the Database Character Set of a GaussDB(for MySQL) Instance Is Correct?
UTF-8 supports 4 byte characters, but GaussDB(for MySQL) utf8 supports only 3 byte characters. Emojis and newly added Unicode characters cannot be stored using MySQL utf8 character set. MySQL released the utf8mb4 character set in 2010 and added the utf8mb4 code after 5.5.3 to be compatible with the 4-byte unicode. You only need to change utf8 to utf8mb4. No other conversion is required.
Data Admin Service (DAS) is a professional database management tool. You can view the database and system character sets through the DAS console.
Procedure
- Log in to the management console.
- Click in the upper left corner and select a region and a project.
- Click in the upper left corner of the page, choose .
- On the Instances page, locate the instance and click Log In in the Operation column.
Alternatively, on the Instances page, click the instance name to go to the Basic Information page. Click Log In in the upper right corner of the page.
- On the displayed login page, enter the correct username and password and click Log In.
- On the top menu bar, choose SQL Operations > SQL Window.
- Run the following SQL statement in the SQL window to view the database character set:
show variables like '%character%';
Figure 1 SQL execution result
- Run the following SQL statement in the SQL window to view the database coding:
show variables like 'collation%';
Figure 2 SQL execution result
- Change the character set to utf8mb4.
- Run the following SQL statement to change the database character sets.
ALTER DATABASE DATABASE_NAME DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
- Run the following SQL statement to change the table character sets.
- Run the following SQL statement to change all the field character sets in tables:
ALTER TABLE TABLE_NAME CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
- character_set_client, character_set_connection, and character_set_results are the settings of the client.
- character_set_system, character_set_server, and character_set_database are the settings of the server.
- The priorities of the parameters on the server are as follows: character_set_database > character_set_server > character_set_system.
- Run the following SQL statement to change the database character sets.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.