vote up 0 vote down star

Now the database is latin1_general_ci and i want to change collation to utf8_general_ci. Is there any settings in phpmyadmin to change collation of database, table, column? rather than changing one by one.

flag

2 Answers

vote up 0 vote down check

You need to either convert each table individually:

ALTER TABLE mytable CONVERT TO CHARACTER SET utf8

(this will convert the columns just as well), or export the database with latin1 and import it back with utf8.

link|flag
But i want to change collation of columns. This is will change only the table collation.. – rsensan Aug 18 at 14:22
@rsensan: CONVERT will change the collation of columns as well. – Quassnoi Aug 18 at 14:33
vote up 0 vote down

you can set default collation at several levels:

http://dev.mysql.com/doc/refman/5.0/en/charset-syntax.html

1) client 2) server default 3) database default 4) table default 5) column

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.