> Short Description > Invalid UNICODE character sequence found (0xc236)
Are you sure that above error message is for the below example? I got: Invalid UNICODE character sequence found (0xc033) > INSERT INTO ftp_log_t (ftp_log_source, ftp_from_site_id, ftp_file_status, ftp_file, >ftp_log_date, ftp_file_date, ftp_file_size, ftp_insert_date) VALUES >('DD',300319,'ST','c:\Inetpub\FTPRoot\300319\300319TLOG07042002.zip','07-04-2002 >14:30:36','2002-07-04 14:00',43514,'2002-07-05 08:22:43') I don't know what data you actually want to store, but for PostgreSQL \3003 means "octal 300 + ascii '3'" == 0xc033, which is apparently wrong UTF-8 sequence. So PostgreSQL behaves as expected. -- Tatsuo Ishii ---------------------------(end of broadcast)--------------------------- TIP 5: Have you checked our extensive FAQ? http://www.postgresql.org/users-lounge/docs/faq.html