COPY data into a table with a SERIAL column? - Mailing list pgsql-general

From Steve Wampler
Subject COPY data into a table with a SERIAL column?
Date
Msg-id 543FF33E.7060808@noao.edu
Whole thread Raw
Responses Re: COPY data into a table with a SERIAL column?  (Rob Sargent <robjsargent@gmail.com>)
List pgsql-general
Hi,

This is with Postgresql 9.3.5.

I'm looking at using a COPY command (via jdbc) to do bulk inserts into a table that
includes a BIGSERIAL column.   Is there a way to mark the data in that
column so it gets assigned a new value on entry - akin to the use of 'default'
in an INSERT?   Some of the rows have values for the serial column, others
don't.

Or is the only way to use COPY for this task:

   COPY table_name (columnnameA, columnnameB, columnnameD) FROM source;

where the serial column name is omitted?  This wouldn't preserve the values
for the serial column on rows that have one already.

Thanks!
Steve
--
Steve Wampler -- swampler@noao.edu
The gods that smiled on your birth are now laughing out loud.

--
This mail was scanned by a trial version of BitDefender
For more information please visit http://www.bitdefender.com/



pgsql-general by date:

Previous
From: Léa Massiot
Date:
Subject: Re: How to start several PostgreSQL clusters at boot time on a Debian OS
Next
From: Rob Sargent
Date:
Subject: Re: COPY data into a table with a SERIAL column?