How to change the connection collation of Mysql

做~自己de王妃 提交于 2019-12-21 04:24:08

问题


How can I change connection collation of mysql database?

I am using Mysql workbench 5.5 and mysql 5.5 in ubuntu 14.

When I execute a stored procedure, an error occurs:

Error Code: 1267. Illegal mix of collations (utf8_general_ci,IMPLICIT) and (utf8_unicode_ci,IMPLICIT) for operation '='

I have search though the internet, which has a temp solution that is to amend

COLLATE utf8_unicode_ci;

in the stored procedure.

But I want to fix this problem for all stored procedures in the future. I have found

SHOW VARIABLES LIKE 'collation%';

which return this.

collation_connection    utf8_general_ci
collation_database  utf8_unicode_ci
collation_server    latin1_swedish_ci

how can I change utf8_general_ci to utf8_unicode_ci?


回答1:


Look into your my.cnf, find the contents below near collation_server:

[mysqld]
init_connect='SET collation_connection = utf8_unicode_ci'
init_connect='SET NAMES utf8'
character-set-server=utf8
collation-server=utf8_unicode_ci 
skip-character-set-client-handshake

Then change your collation variables to:

collation_connection    utf8_unicode_ci
collation_server        latin1_swedish_ci

Remember to restart MySQL server service.

For DB collation, you can use the following SQL:

ALTER DATABASE <database_name> CHARACTER SET utf8 COLLATE utf8_unicode_ci;

or you can do it at Alter database screen in MySQL Workbench (always update this to the latest version!)




回答2:


Firstly, I think the error message is because of the collation of stored procedure (connection) doesn't match the table. But I was wrong, the reason for the error is because of the collation of the column doesn't match the collation of the table.

I want to change to collation of column to 'utf8_unicode_ci' in my case. So I have run this statement:

alter table <YourTableName> 
    MODIFY <YourColumnName> VARCHAR(XXX) COLLATE 'utf8_unicode_ci';

Please be aware that change of collation may result in data loss. For me, General -> Unicode, with all English in varchar column. There is none.

Further reading: http://dev.mysql.com/doc/refman/5.7/en/charset-column.html

http://dev.mysql.com/doc/refman/5.7/en/charset-connection.html

http://dev.mysql.com/doc/refman/5.7/en/charset-database.html



来源:https://stackoverflow.com/questions/38949115/how-to-change-the-connection-collation-of-mysql

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!