Re: Trouble w/ COPY command

From: Greg Williamson <gwilliamson39(at)yahoo(dot)com>
To: Wells Oliver <wellsoliver(at)gmail(dot)com>, "pgsql-admin(at)postgresql(dot)org" <pgsql-admin(at)postgresql(dot)org>
Subject: Re: Trouble w/ COPY command
Date: 2012-04-14 23:17:07
Message-ID: 1334445427.92228.YahooMailNeo@web46106.mail.sp1.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Wells Oliver asked:

>
>I have CSV files blowing up because they have double quotes around numeric values: " 1.34" yields ERROR:  invalid input syntax for type numeric: " 1.34"
>>
>And occasionally these are empty, and you see invalid syntax for type numeric: " "
>
>Are there flags I can pass to COPY to avoid this? There are properly quoted string values elsewhere in the final, so I'm reticent to strip out double quote characters or anything.
>

There's no easy command line method that I know of. Perhaps if you can detect patterns some sed / awk might help.

I'd probably load the CSV file into a temporary work table with the columns that are giving you issues defined as type "text." Then use SQL to remove the offending quotation marks from the afflicted columns. Create new columns of type numeric in the table, and copy the values from the text variant to the numeric ones with the proper cast one at a time; if it blows up you go back to resolving issues. Then copy the table using the numeric columns to the desired destination.

Hopefully others might have better ideas ... best o' luck!

Greg Williamson

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Tom Lane 2012-04-15 00:01:02 Re: Trouble w/ COPY command
Previous Message Wells Oliver 2012-04-14 22:45:47 Trouble w/ COPY command