Re: COPY command and serial columns

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: COPY command and serial columns
Дата
Msg-id 19707.1289058113@sss.pgh.pa.us
обсуждение исходный текст
Ответ на COPY command and serial columns  ("Wm.A.Stafford" <stafford@marine.rutgers.edu>)
Список 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 по дате отправления:

Предыдущее
От: ALT SHN
Дата:
Сообщение: Re: Data Types
Следующее
От: Lew
Дата:
Сообщение: Re: Data Types