Mary Y Wang wrote:
> I got the following error and not sure how to fix it.
> "psql:/tmp/030610dumpfile.txt:4369: ERROR:  invalid byte sequence for 
> encoding "UTF8": 0x93
> HINT:  This error can also happen if the byte sequence does 
> not match the encoding expected by the server, which is 
> controlled by "client_encoding"."
> 
> Any ideas?
> I'm running on Postgres 8.3.8.

You must either change the client encoding to the encoding of the
data you are feeding the client, or you must change the data to
match the client encoding.

Client encoding can be changed with the SQL statement
"SET client_encoding = ..." or by setting the PGCLIENTENCODING
environment variable.

Yours,
Laurenz Albe

-- 
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general

Reply via email to