Обсуждение: Re: [GENERAL] :) Import file2table Question

Поиск
Список
Период
Сортировка

Re: [GENERAL] :) Import file2table Question

От
Herouth Maoz
Дата:
(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