I have a database that was set up with the default character set SQL_ASCII. I want to switch it to UNICODE. Is there an easy way to do that?
|
Make sure the client encoding is set correctly during all this. Source: http://archives.postgresql.org/pgsql-novice/2006-03/msg00210.php |
|||
|
|
|
First off, Daniel's answer is the correct, safe option. For the specific case of changing from SQL_ASCII to something else, you can cheat and simply poke the pg_database catalogue to reassign the database encoding. This assumes you've already stored any non-ASCII characters in the expected encoding (or that you simply haven't used any non-ASCII characters). Then you can do:
This will not change the collation of the database, just how the encoded bytes are converted into characters (so now Caveat emptor. Dumping and reloading provides a way to check your database content is actually in the encoding you expect, and this doesn't. And if it turns out you did have some wrongly-encoded data in the database, rescuing is going to be difficult. So if you possibly can, dump and reinitialise. |
||||
|