i want to change column collation and character set of system database information_schema... can anyone give any input on how to do this? is there any special priviledges i need for this
|
|
As far as I know, you cannot run
The variable that has to do with meta data in MySQL, such as the There's more information on this page: UTF-8 for Metadata. For ordinary tables, you change the character set of a table with an
To do this, you will need the "alter" privilege. You can see which privileges your MySQL server supports with a |
||
|
|
|
|
To change the character set (and collation) for all columns in an existing table, use... ALTER TABLE tbl_name CONVERT TO CHARACTER SET charset_name [COLLATE collation_name]; |
||
|
