Re: ERROR: invalid input syntax for integer:

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: ERROR: invalid input syntax for integer:
Дата
Msg-id 3547.1316650024@sss.pgh.pa.us
обсуждение исходный текст
Ответ на ERROR: invalid input syntax for integer:  (e-letter <inpost@gmail.com>)
Ответы Re: ERROR: invalid input syntax for integer:  (e-letter <inpost@gmail.com>)
Список pgsql-novice
e-letter <inpost@gmail.com> writes:
> A database table was created with the command:
> CREATE TABLE tablename (column1 bigint,date date,time time,column2 text)
> a csv file was imported, of structure:
> 123456,2000-01-01,01:10,"sometext"
> Using the command:
> \copy tablename from file.csv
> Causes the command terminal error:
>  input syntax for integer: "123456,2000-01-01,01:10,"sometext""
> CONTEXT:  COPY tablename, line 1, column column2: "123456

I don't believe that \copy will default to assuming that the file is in
csv format.  You probably need to add "format csv" or something similar
to that command.

            regards, tom lane

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

Предыдущее
От: e-letter
Дата:
Сообщение: ERROR: invalid input syntax for integer:
Следующее
От: James Hartley
Дата:
Сообщение: Re: ERROR: invalid input syntax for integer: