Re: Question about numeric - Mailing list pgsql-general

From Stephan Szabo
Subject Re: Question about numeric
Date
Msg-id 20020522111834.O53076-100000@megazone23.bigpanda.com
Whole thread Raw
In response to Question about numeric  (Erwin Ambrosch <ambre@ebutec.com>)
List pgsql-general
On Wed, 22 May 2002, Erwin Ambrosch wrote:

> Hi,
>
> when I import data from a text file (fildes are seperated with pipes) I get
> an error for fields of type numeric if there are no data for this fields.
>
> Example:
>
> CREATE TABLE mytable (
>   id    SERIAL,
>   num      VARCHAR(32),
>   cost      NUMERIC(6,2),
>   info       TEXT
> );
>
> A line to import from a text file.
>
> 1|123abc||This part is....
>
> Because of the empty field for the column cost, I get the following error:
>
> ERROR:  copy: line 1, Bad numeric input format ''
> PQendcopy: resetting connection

Well '' isn't a valid numeric.  If you were expecting a NULL, the default
NULL representation is \N.  Try adding WITH NULL AS '' to your copy
command.


pgsql-general by date:

Previous
From: "Command Prompt, Inc."
Date:
Subject: Re: MacOS X Shared Buffers (SHMMAX)?
Next
From: "Ned Lilly"
Date:
Subject: Re: Great Bridge benchmarks?