Re: duplicate key value violates unique constraint

From: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
To: Ashkar Dev <ashkardev(at)gmail(dot)com>, "pgsql-general(at)lists(dot)postgresql(dot)org" <pgsql-general(at)lists(dot)postgresql(dot)org>
Subject: Re: duplicate key value violates unique constraint
Date: 2020-03-07 20:28:05
Message-ID: b6ae119e-3d98-687d-d7c4-fa874bc2852a@aklaver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin pgsql-general

On 3/7/20 11:29 AM, Ashkar Dev wrote:
> Hi all,
>
> how to fix a problem, suppose there is a table with id and username
>
> if I set the id to bigint so the limit is 9223372036854775807
> if I insert for example 3 rows
> id    username
> --    --------------
> 1     abc
> 2     def
> 3     ghi
>
> if I delete all rows and insert one another it is like
>
> id    username
> --    --------------
> 4     jkl

So I am assuming id is of type bigserial or something that has a
sequence behind it?

>
>
> So it doesn't start again from non-available id 1, so what is needed to
> do to make the new inserts go into non-available id numbers?

If you are sequences then they do not go backwards:

https://www.postgresql.org/docs/12/sql-createsequence.html

"Because nextval and setval calls are never rolled back, sequence
objects cannot be used if “gapless” assignment of sequence numbers is
needed. It is possible to build gapless assignment by using exclusive
locking of a table containing a counter; but this solution is much more
expensive than sequence objects, especially if many transactions need
sequence numbers concurrently."

If you want that to happen you will have to roll your own implementation.

--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Ron 2020-03-07 21:13:26 Re: duplicate key value violates unique constraint
Previous Message Ashkar Dev 2020-03-07 20:21:32 Re: duplicate key value violates unique constraint

Browse pgsql-general by date

  From Date Subject
Next Message Ron 2020-03-07 21:13:26 Re: duplicate key value violates unique constraint
Previous Message Ashkar Dev 2020-03-07 20:21:32 Re: duplicate key value violates unique constraint