From: | Michael Fuhr <mike(at)fuhr(dot)org> |
---|---|
To: | Alexis Paul Bertolini <bertolini(at)computer(dot)org> |
Cc: | pgsql-sql(at)postgresql(dot)org |
Subject: | Re: Changing character set when the damage is done |
Date: | 2006-12-24 19:12:51 |
Message-ID: | 20061224191251.GA46309@winnie.fuhr.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
On Sun, Dec 24, 2006 at 06:44:04PM +0100, Alexis Paul Bertolini wrote:
> >SELECT convert(colname, 'utf8', 'latin1') FROM tablename;
>
> Yep, I meant the A with the tilde (the word cedilla sounded Spanish...
> lol). Thanks, the "convert" function does the trick for me.
If possible consider recreating the database with an encoding other
than SQL_ASCII (e.g., LATIN1 or UTF8). If you do that, and if you
set client_encoding appropriately when inserting and selecting data,
then the database will convert the data automatically.
> Using win1252 I get a "invalid destination encoding" error, but no
> problem since I know for sure there aren't any euro signs.
Versions 8.1 and later support win1252 so I'd guess you're using
8.0 or earlier. Consider upgrading to 8.1 or 8.2 for numerous
improvements over earlier releases.
http://www.postgresql.org/docs/8.1/interactive/release-8-1.html
http://www.postgresql.org/docs/8.2/interactive/release-8-2.html
--
Michael Fuhr
From | Date | Subject | |
---|---|---|---|
Next Message | Harpreet Dhaliwal | 2006-12-25 17:32:17 | Re: [GENERAL] NEED URGENT HELP.... |
Previous Message | Alexis Paul Bertolini | 2006-12-24 17:44:04 | Re: Changing character set when the damage is done |