Re: copy files to postgresql

From: Jeff Eckermann <jeff_eckermann(at)yahoo(dot)com>
To: John Zhang <jzhang(at)jimmy(dot)harvard(dot)edu>, pgsql-sql(at)postgresql(dot)org
Subject: Re: copy files to postgresql
Date: 2002-08-06 13:23:25
Message-ID: 20020806132325.38254.qmail@web20809.mail.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

I believe that soon-to-be-released version 7.3 will
have the ability to import data to specific columns,
as you are trying to do. For now, you will have to
edit your input file to insert values (even if null)
for the missing columns. The default null
representation expected by COPY is "\N" (backslash,
upper case "N"), or you can specify another using the
syntax "\copy .... with null as 'whatever'"

--- John Zhang <jzhang(at)jimmy(dot)harvard(dot)edu> wrote:
> I was trying to copy files to columns of a
> PostgreSQL database table using \copy
> ( e. g. \copy mytable (column names here) from 'my
> file' using delimiters '\t').
> PostgreSQL does not seem to like the column names
> part. Could someone help me
> with that? Thanks.
> > Put the text of the welcome message here.
> >
> ---------------------------(end of
> broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster
>

__________________________________________________
Do You Yahoo!?
Yahoo! Health - Feel better, live better
http://health.yahoo.com

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Tom Lane 2002-08-06 14:01:07 Re: copy files to postgresql
Previous Message Richard Huxton 2002-08-06 12:59:53 Re: Table design question...