tks
if import data with csv there error
like:
\copy t(d1,d2,d3) from 'comma.csv' with delimiter ',' csv ;
ERROR: null value in column "d2" violates not-null constraint
DETAIL: Failing row contains (e, null, g).
CONTEXT: COPY t, line 2: "e,,g"
and there right
\copy t(d1,d2,d3) from 'comma.csv' with delimiter ',' ;
demo_pg94=>
At 2014-06-26 08:57:32, "Matheus de Oliveira" <matioli.matheus@gmail.com> wrote: