Re: data loading

Поиск
Список
Период
Сортировка
От Richard Huxton
Тема Re: data loading
Дата
Msg-id 200401092004.48865.dev@archonet.com
обсуждение исходный текст
Ответ на data loading  (azwa@nc.com.my)
Ответы Re: data loading
Список pgsql-sql
On Friday 09 January 2004 02:13, azwa@nc.com.my wrote:
> Hi,
>
>
>   i try to load data from flat file (comma delimiter format) into
> temporary table . i use COPY command as below:
>
> dwnc=# copy biosadm.custdo_temp
> dwnc-# from '/home/bios/customer_data/CustomerDO_new.CSV'
> dwnc-# WITH DELIMITER ',' ;
>
> ERROR:  copy: line 141, Extra data after last expected column

Does line 141 (or nearby) have a comma somewhere in its data? That would fool 
the COPY into mis-counting the columns. See the COPY entry in the SQL Command 
Reference chapter of the manuals - you'll want to escape any commas with a 
backslash:\,

--  Richard Huxton Archonet Ltd


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

Предыдущее
От: Daniel Lau
Дата:
Сообщение: Re: Type conversion from TEXT to DOUBLE PRECISION
Следующее
От: Richard Huxton
Дата:
Сообщение: Re: data loading