"Aaron Held" <[EMAIL PROTECTED]> writes:
> I am importing a large number of records monthly using the \copy (from text 
>file)command.
> I would like to use a sequence as a unique row ID for display in my app.
> Is there any way to let postgresql generate the sequence itself.  Currently the only 
>way I
> can make it work is to grab the next seq value and insert my own numbers into the 
>file

Right now the only reasonable way to do that is to do the \copy into a
temporary table (that's missing the sequence column) and then do
        insert into realtable(column list) select * from temptable;
where the column list lists the columns you're pulling from the temp
table.  The INSERT will substitute the default value (viz, nextval())
in the sequence column.

In 7.3 it'll be possible to do this in one step with no temp table:
COPY will accept a column list, so you can get the same effect just
with COPY.

                        regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster

Reply via email to