Unable to copy data from csv file, solution of problem

Поиск
Список
Период
Сортировка
От e-letter
Тема Unable to copy data from csv file, solution of problem
Дата
Msg-id 298a6f60912290306r458bc4c3t221e7197ae590e14@mail.gmail.com
обсуждение исходный текст
Список pgsql-novice
Readers,

This is for other novices that experienced the same error. Solved by
expert postgresql users at the irc channel.

I created a database and table successfully

I tried the following command and receiving the following command
terminal output:

CREATE TABLE test();
CREATE TABLE
...=# COPY activity FROM '/path/to/test.csv';
ERROR:  extra data after last expected column
CONTEXT:  COPY activity, line 1: "a,b"

The csv file is:

a,b
1,2

The error is due to the mistake of creating a blank table. It is
necessary to create a table with the columns configured to resemble
the columns in the csv file.

Columns can be configured manually using the 'create table' command
instructions, or use 'extract load transform' (ELT) software such as
pgloader, or kettle, or others.

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

Предыдущее
От: Jasen Betts
Дата:
Сообщение: Re: CHILD WITHOUT PARENT (TEMPORARILY)
Следующее
От: Susan M Farley
Дата:
Сообщение: How to create a Java function in PostgreSQL