Re: BUG #17498: Receive Failed: (error code 1) when importing any csv file from pgAdmin with no explanations

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: jam paydavousi <jampaydavousi(at)yahoo(dot)com>
Cc: "pgsql-bugs(at)lists(dot)postgresql(dot)org" <pgsql-bugs(at)lists(dot)postgresql(dot)org>
Subject: Re: BUG #17498: Receive Failed: (error code 1) when importing any csv file from pgAdmin with no explanations
Date: 2022-05-25 21:57:18
Message-ID: 2019391.1653515838@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

jam paydavousi <jampaydavousi(at)yahoo(dot)com> writes:
> Thank you for following up Tom.  I did what you instructed- i.e., filing distinctly from pgAdmin link you provided.
> However, I have the same issue when I attempt to import the csv file via the command line interface on mac terminal. It copies 0 rows

> postgres-# \copy alove from '/Users/jam/alovel.csv' delimiter ',' csv header;

> COPY 0

Hm. Sure looks like Postgres thinks the file is empty.

That "CSV HEADER" option would silently eat the first line, so I'm
wondering if the data looks like it's a single line to COPY,
ie maybe there is something funny about the newlines in your file.
You could check this theory easily by leaving off "CSV HEADER"
and seeing if the results change.

regards, tom lane

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message jam paydavousi 2022-05-25 22:10:53 Re: BUG #17498: Receive Failed: (error code 1) when importing any csv file from pgAdmin with no explanations
Previous Message jam paydavousi 2022-05-25 21:55:51 Re: BUG #17498: Receive Failed: (error code 1) when importing any csv file from pgAdmin with no explanations