Re: bulk imports with sequence
От | Tom Lane |
---|---|
Тема | Re: bulk imports with sequence |
Дата | |
Msg-id | 5846.1029855225@sss.pgh.pa.us обсуждение исходный текст |
Ответ на | bulk imports with sequence ("Aaron Held" <aaron@metrony.com>) |
Список | pgsql-sql |
"Aaron Held" <aaron@metrony.com> 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 doinsert 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
В списке pgsql-sql по дате отправления: