MySQL UTF/Unicode migration tips - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T12:43:04Z http://stackoverflow.com/feeds/question/47005 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/47005/mysql-utf-unicode-migration-tips 1 MySQL UTF/Unicode migration tips Mike H 2008-09-05T22:32:26Z 2008-11-05T14:39:26Z <p>Does anyone have any tips or gotcha moments to look out for when trying to migrate MySQL tables from the the default case-insenstive swedish or ascii charsets to utf-8? Some of the projects that I'm involved in are striving for better internationalization and the database is going to be a significant part of this change.</p> <p>Before we look to alter the database, we are going to convert each site to use UTF-8 character encoding (from least critical to most) to help ensure all input/output is using the same character set.</p> <p>Thanks for any help</p> http://stackoverflow.com/questions/47005/mysql-utf-unicode-migration-tips/47011#47011 1 Answer by Mike H for MySQL UTF/Unicode migration tips Mike H 2008-09-05T22:39:53Z 2008-09-05T22:39:53Z <p>I am going to be going over the following sites/articles to help find an answer.</p> <p><a href="http://www.joelonsoftware.com/articles/Unicode.html" rel="nofollow">The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!) - Joel on Software</a></p> <p><a href="http://www.cl.cam.ac.uk/~mgk25/unicode.html" rel="nofollow">UTF-8 And Unicode FAQ</a></p> <p><a href="http://www.hanselminutes.com/default.aspx?showID=135" rel="nofollow">Hanselminutes episode "Sorting out Internationalization with Michael Kaplan"</a></p> <p>And I also just found a very on topic post by Derek Sivers @ O'Reilly ONLamp Blog as I was writing this out. <a href="http://www.oreillynet.com/onlamp/blog/2006/01/turning_mysql_data_in_latin1_t.html" rel="nofollow">Turning MySQL data in latin1 to utf8 utf-8</a></p> http://stackoverflow.com/questions/47005/mysql-utf-unicode-migration-tips/47054#47054 0 Answer by Harry for MySQL UTF/Unicode migration tips Harry 2008-09-05T23:10:20Z 2008-09-05T23:20:36Z <p>Some hints:</p> <ul> <li>Your <code>CHAR</code> and <code>VARCHAR</code> columns will use up to 3 times more disk space. (You probably won't get much disk space grow for Swedish words.)</li> <li>Use <code>SET NAMES utf8</code> before reading or writing to the database. If you don't this then you will get partially garbled characters.</li> </ul> http://stackoverflow.com/questions/47005/mysql-utf-unicode-migration-tips/47059#47059 0 Answer by John Millikin for MySQL UTF/Unicode migration tips John Millikin 2008-09-05T23:12:00Z 2008-09-05T23:12:00Z <blockquote> <p>Your <code>CHAR</code> and <code>VARCHAR</code> columns will use up to 3 times more disk space.</p> </blockquote> <p>Only if they're stuffed full of latin-1 with ordinals > 128. Otherwise, the increased space use of UTF-8 is minimal.</p> http://stackoverflow.com/questions/47005/mysql-utf-unicode-migration-tips/69075#69075 0 Answer by mike for MySQL UTF/Unicode migration tips mike 2008-09-16T03:05:58Z 2008-09-16T03:05:58Z <p>The collations are not always favorable. You'll get umlats collating to non umlatted versions which is not always correct. Might want to go w/ utf8_bin, but then everything is case sensitive as well. </p> http://stackoverflow.com/questions/47005/mysql-utf-unicode-migration-tips/72966#72966 0 Answer by JBB for MySQL UTF/Unicode migration tips JBB 2008-09-16T14:33:08Z 2008-09-16T14:33:08Z <p>Beware index length limitations. If a table is structured, say:</p> <p>a varchar(255) b varchar(255) key ('a', 'b')</p> <p>You're going to go past the 1000 byte limit on key lengths. 255+255 is okay, but 255*3 + 255*3 isn't going to work.</p>