Problem with COPY

Поиск
Список
Период
Сортировка
От Brauner Oliveira
Тема Problem with COPY
Дата
Msg-id CADV88-oMcsUeNCGzV_HEwCZeuN4p9wvdO=ShR3O3VFLMckL-4A@mail.gmail.com
обсуждение исходный текст
Ответы Re: Problem with COPY
Список pgsql-novice
Hello,

I am trying to copy a table from a file:

COPY table FROM 'file/path/filename.csv' DELIMITER ';' CSV;

But I got this error:

ERROR: value too long for type character varying(8)
SQL state: 22001
Context: COPY $tablename, line 1, column $colum_name: "69900900"

Look that the length of the data (69900900) i want to copy fits the column data type (varchar(8)). The length is exactly the same.

The file is well formatted and Encoded in UTF-8:

value1;value2;value3;value4

Someone know what i'm doing wrong?

Thank you.

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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: [HACKERS] index refuses to build
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Problem with COPY