Re: Duplicate Unique Key constraint error

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Duplicate Unique Key constraint error
Дата
Msg-id 5288.1184094554@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Duplicate Unique Key constraint error  ("Harpreet Dhaliwal" <harpreet.dhaliwal01@gmail.com>)
Ответы Re: Duplicate Unique Key constraint error  ("Harpreet Dhaliwal" <harpreet.dhaliwal01@gmail.com>)
Re: Duplicate Unique Key constraint error  (Tom Allison <tom@tacocat.net>)
Список pgsql-general
"Harpreet Dhaliwal" <harpreet.dhaliwal01@gmail.com> writes:
> Transaction 1 started, saw max(dig_id) = 30 and inserted new dig_id=31.
> Now the time when Transaction 2 started and read max(dig_id) it was still 30
> and by the time it tried to insert 31, 31 was already inserted by
> Transaction 1 and hence the unique key constraint error.

This is exactly why you're recommended to use sequences (ie serial
columns) for generating IDs.  Taking max()+1 does not work, unless
you're willing to lock the whole table and throw away vast amounts of
concurrency.

            regards, tom lane

В списке pgsql-general по дате отправления:

Предыдущее
От: Richard Huxton
Дата:
Сообщение: Re: Adjacency Lists vs Nested Sets
Следующее
От: Michael Glaesemann
Дата:
Сообщение: Re: Adjacency Lists vs Nested Sets