Re: Invalid byte sequence

From: Holger Jakobs <holger(at)jakobs(dot)com>
To: pgsql-admin(at)lists(dot)postgresql(dot)org
Subject: Re: Invalid byte sequence
Date: 2021-07-01 07:40:19
Message-ID: c30c40b2-721f-7fb9-7973-4a65f89d8e4b@jakobs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

How many lines has the file? Maybe line 377617 is the last one.

If so, you can just remove the last line containing this 0x00. The
following command can do this for you:

|sed -i '$ d' |/outputfile.csv

May I remark that having a file in the / directory is a bit awkward?
This directory should not be writable by any user (except root, and root
doesn't fiddle with files for a database).

Am 01.07.21 um 09:29 schrieb Yambu:
> Hello
>
> How do i get past the error below. I have created a foreign table
> which points to a csv file and when i try to create another table it
> gives error below
>
> The csv file has funny characters, how do i bypass those characters.
>
> create foreign table table1
> (
> id int,
> name text
> )
> SERVER local_file
> OPTIONS (filename '/outputfile.csv' ,
> format 'csv',
> header 'TRUE',
> delimiter ';'
> );
>
>
> create table2 as select * from table1;
>
> ERROR:  invalid byte sequence for encoding "UTF8": 0x00
> CONTEXT:  COPY table1, line 377617

--
Holger Jakobs, Bergisch Gladbach, Tel. +49-178-9759012

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Yambu 2021-07-01 07:45:22 Re: Invalid byte sequence
Previous Message Yambu 2021-07-01 07:38:38 Re: Invalid byte sequence