Re: [GENERAL] :) Import file2table Question

From: Herouth Maoz <herouth(at)oumail(dot)openu(dot)ac(dot)il>
To: Korapat Charukumnerdkanok <korapat(dot)c(at)cdg(dot)co(dot)th>
Cc: pgsql-sql(at)postgreSQL(dot)org
Subject: Re: [GENERAL] :) Import file2table Question
Date: 1998-07-06 13:49:26
Message-ID: l03110701b1c685f4988a@[147.233.159.109]
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-sql

(Redirected to the SQL list)

At 12:31 +0300 on 6/7/98, Korapat Charukumnerdkanok wrote:

> 2 -What table field type that suits for 6-digit decimal number..
> (i.e. 0.000000, 0.250001 , 0.123456 , ....)?
>
> I've defined this column with float4 and float8
> but when I inserted data it returned this error message..
>
>
> ProjDB=> insert into PrjTB values (0.000000,'red','Ln1')
> ProjDB->;
> ERROR: pg_atoi: error in "0.000000": can't parse ".000000"

Must be something wrong with your installation - or your table definition.
In my case:

testing=> create table test ( col1 float8 );
CREATE
testing=> insert into test values ( 0.3 );
INSERT 758126 1
testing=> insert into test values ( 0.000003 );
INSERT 758127 1
testing=> insert into test values ( 0 );
INSERT 758128 1
testing=> insert into test values ( 0.0 );
INSERT 758129 1
testing=> insert into test values ( 0.000000 );
INSERT 758130 1
testing=> select * from test;
col1
-----
0.3
3e-06
0
0
0
(5 rows)

Herouth

--
Herouth Maoz, Internet developer.
Open University of Israel - Telem project
http://telem.openu.ac.il/~herutma

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Bruce Momjian 1998-07-06 18:04:22 Re: [GENERAL] nodeRead ERROR.
Previous Message Stephen Davies 1998-07-06 13:26:44 import from SQL Server

Browse pgsql-sql by date

  From Date Subject
Next Message Brett W. McCoy 1998-07-06 13:59:03 Re: [SQL] How to split very long tables?
Previous Message Herouth Maoz 1998-07-06 13:38:53 Re: [SQL] Primary keys: can they be alphanumerical?