Re: COPY command and serial columns - Mailing list pgsql-novice

From Tom Lane
Subject Re: COPY command and serial columns
Date
Msg-id 19707.1289058113@sss.pgh.pa.us
Whole thread Raw
In response to COPY command and serial columns  ("Wm.A.Stafford" <stafford@marine.rutgers.edu>)
List pgsql-novice
"Wm.A.Stafford" <stafford@marine.rutgers.edu> writes:
> I am trying to use COPY to load some data.  I am not using a list of
> column names in the COPY command.  The table I am loading has 80
> character varying columns and a primary key defined as: id serial
> PRIMARY KEY

> The id field is not in the data being loaded so COPY gives the message:
> ERROR:  missing data for column "id"

> I don't want to use a column list because this table is subject to a lot
> of change and a column list would be yet another possible point of
> failure if it has to be changed to keep up with table changes.

> Is there anyway to load this data without specifying a column list?

Nope, sorry, COPY lacks the "READ MY MIND" option.  If the incoming
data doesn't include every column of the table, you have to specify
a column list to tell it which columns the data does include.

Possibly you could make your code robust against table alterations by
having it look into the system catalogs to get the current column
list.  Then it could leave out the column name(s) it knows a-priori
aren't in the data.

            regards, tom lane

pgsql-novice by date:

Previous
From: ALT SHN
Date:
Subject: Re: Data Types
Next
From: Lew
Date:
Subject: Re: Data Types