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

Поиск
Список
Период
Сортировка
От jam paydavousi
Тема Re: BUG #17498: Receive Failed: (error code 1) when importing any csv file from pgAdmin with no explanations
Дата
Msg-id 486515877.1710597.1653516653132@mail.yahoo.com
обсуждение исходный текст
Ответ на Re: BUG #17498: Receive Failed: (error code 1) when importing any csv file from pgAdmin with no explanations  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
Hi Tom,

It is odd that there was no description in the Failed error code:1 in pgAdmin, suggesting mismatch between how the column needs to be defined so SQl can import it.  The psql error description  on command line on Mac terminal was detailed, to the point, and helpful in troubleshooting it.  

Thanks for your timely reply and help in troubleshooting.  My PostgreSQL tables are loading all CSV files now, my python code in Flask is reading and converting data from SQL using SQLAlchemy with no errors, and my front end is showing the data. All si good now.  

Best Regards to you.

Jam

On Wednesday, May 25, 2022, 02:57:21 PM PDT, Tom Lane <tgl@sss.pgh.pa.us> wrote:


jam paydavousi <jampaydavousi@yahoo.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

В списке pgsql-bugs по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: BUG #17498: Receive Failed: (error code 1) when importing any csv file from pgAdmin with no explanations
Следующее
От: "David G. Johnston"
Дата:
Сообщение: Re: BUG #17498: Receive Failed: (error code 1) when importing any csv file from pgAdmin with no explanations