Re: view table pkey values

Поиск
Список
Период
Сортировка
От Raymond O'Donnell
Тема Re: view table pkey values
Дата
Msg-id 4A92C467.1070308@iol.ie
обсуждение исходный текст
Ответ на view table pkey values  (Scott Frankel <leknarf@pacbell.net>)
Ответы Re: view table pkey values
Список pgsql-general
On 24/08/2009 17:31, Scott Frankel wrote:
> The insert that yields the error seems innocuous enough:
>
>     INSERT INTO foo (color_id, ordinal, person_id) VALUES (1, 1019, 2);
>
> It seems as if there's a sequence (foo_pkey) that's got some weird
> values in it.  The table itself looks like this:
>
>
> CREATE TABLE foo (
>     foo_id    SERIAL        PRIMARY KEY,


If the sequence's current value is lower than the highest foo_id in the
table, then you'll get collisions - I'd imagine that's what's happening
to you. You can fix that by using setval() to set the sequence value to
a number higher than any currently in foo_id.

Ray.

------------------------------------------------------------------
Raymond O'Donnell, Director of Music, Galway Cathedral, Ireland
rod@iol.ie
Galway Cathedral Recitals: http://www.galwaycathedral.org/recitals
------------------------------------------------------------------

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

Предыдущее
От: james bardin
Дата:
Сообщение: warm standby and reciprocating failover
Следующее
От: Scott Frankel
Дата:
Сообщение: Re: view table pkey values