vote up 3 vote down star
3

I ran into the problem that my primary key sequence is not in sync with my table rows.

That is, when I insert a new row I get a duplicate key error because the sequence implied in the serial datatype returns a number that already exists.

It seems to be caused by import/restores not maintaining the sequence properly.

flag

77% accept rate
I am curious.. are you dropping the db before you do a restore? I have a faint recollection of this happening, but I could be wrong :P – Arthur Thomas Oct 28 '08 at 23:07

4 Answers

vote up 0 vote down

htxts method worked great for me. Thanks

link|flag
vote up 2 vote down

ALTER SEQUENCE sequence_name RESTART WITH (SELECT max(id) FROM table_name);

link|flag
vote up 7 vote down check
// Login to psql and run the following
// What is the result?
SELECT MAX(id) FROM your_table;

// Then run...
// This should be higher than the last result.
SELECT nextval('your_table_id_seq');

// If it's not higher... run this to try and fix it. (run a quick pg_dump first...)
SELECT setval('your_table_id_seq', (SELECT MAX(id) FROM your_table)+1);

Source - Ruby Forum

link|flag
That is not "the index". Fix the question – Vinko Vrsalovic Oct 28 '08 at 18:15
Edit if you know better – htxt Oct 28 '08 at 18:16
Thanks, phpPgAdmin has it under a tab named 'Indexes' so I thought this was the right naming. So I guess 'sequence' is the property of the 'index' that gets updated? – htxt Oct 28 '08 at 18:30
The sequence is just a special value that gets incremented/set with nextval() and setval() functions. It's used primarily to create columns that will be incrementing automatically, you have a primary key that has as a default value 'nextval('primary_key_name_seq') and thus every time you insert ... – Vinko Vrsalovic Oct 28 '08 at 18:43
... a new row, that value is obtained from the sequence. Indexes are a totally different beast, they also get automatically created for primary keys, but have nothing to do with which is the next value going to be. I haven't seen phpPgAdmin in ages, but I tend to think that that tab shows the ... – Vinko Vrsalovic Oct 28 '08 at 18:44
show 1 more comment
vote up 0 vote down

Try reindex.

link|flag
reindex didn't work, it only seems to increment the index by 1 – htxt Oct 28 '08 at 18:26
reindex didn't work because it was answering your original question, about database indexes, not sequences – Vinko Vrsalovic Oct 28 '08 at 18:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.