Re: Alter sequence restart with selected value... - Mailing list pgsql-general

From Scott Marlowe
Subject Re: Alter sequence restart with selected value...
Date
Msg-id dcc563d10709180915yb50f79dlc39dca6f3db36040@mail.gmail.com
Whole thread Raw
In response to Alter sequence restart with selected value...  (Jeff Ross <jross@wykids.org>)
Responses Re: Alter sequence restart with selected value...
List pgsql-general
On 9/18/07, Jeff Ross <jross@wykids.org> wrote:
> I'm using copy to insert a bunch of rows into a new table with a unique
> primary key.  Copy is correctly incrementing the primary key, but
> apparently the sequence itself is never updated because when I go to
> insert again I get a constraint violation.

Try using setval.

select setval('seqname',select max(id) from tablename));

pgsql-general by date:

Previous
From: Ow Mun Heng
Date:
Subject: help w/ SRF function
Next
From: "Phoenix Kiula"
Date:
Subject: Re: For index bloat: VACUUM ANALYZE vs REINDEX/CLUSTER