S saosangmo Verified User Joined Oct 3, 2012 Messages 114 Location Hanoi Mar 25, 2013 #1 Hi, When my users create new mysql db, their collation of db is latin1_swedish_ci. Now, I want to change the default collation to utf8_general_ci. Could you help me? many thanks -saosangmo
Hi, When my users create new mysql db, their collation of db is latin1_swedish_ci. Now, I want to change the default collation to utf8_general_ci. Could you help me? many thanks -saosangmo
zEitEr Super Moderator Joined Apr 11, 2005 Messages 15,366 Location www.poralix.com Mar 25, 2013 #2 Hello, You need to update /etc/my.cnf to fit your needs, and add Code: [mysqld] character-set-server=utf8 collation-server=utf8_general_ci More details: http://dev.mysql.com/doc/refman/5.0/en/charset-applications.html
Hello, You need to update /etc/my.cnf to fit your needs, and add Code: [mysqld] character-set-server=utf8 collation-server=utf8_general_ci More details: http://dev.mysql.com/doc/refman/5.0/en/charset-applications.html