Re: data loading - Mailing list pgsql-sql

From Richard Huxton
Subject Re: data loading
Date
Msg-id 200401092004.48865.dev@archonet.com
Whole thread Raw
In response to data loading  (azwa@nc.com.my)
Responses Re: data loading
List 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 by date:

Previous
From: Daniel Lau
Date:
Subject: Re: Type conversion from TEXT to DOUBLE PRECISION
Next
From: Richard Huxton
Date:
Subject: Re: data loading