Re: strangest thing happened

Поиск
Список
Период
Сортировка
Искать
От
Justin Graf
Тема
Re: strangest thing happened
Дата
Msg-id
4C34F0B9.5020902@magwerks.com
Ответ на
Список
Дерево обсуждения
strangest thing happened John <johnf@jfcomputer.com>
Re: strangest thing happened Joe Conway <mail@joeconway.com>
Re: strangest thing happened Torsten Zühlsdorff <foo@meisterderspiele.de>
Re: strangest thing happened Justin Graf <justin@magwerks.com>
Re: strangest thing happened John <johnf@jfcomputer.com>
Re: strangest thing happened "Ross J. Reedstrom" <reedstrm@rice.edu>
Re: strangest thing happened Justin Graf <justin@magwerks.com>
Re: strangest thing happened John <johnf@jfcomputer.com>
Re: strangest thing happened Ben Morrow <ben@morrow.me.uk>
Re: strangest thing happened Justin Graf <justin@magwerks.com>
Re: strangest thing happened Viktor Bojović <viktor.bojovic@gmail.com>
Are you using PG's  sequence/auto increment???

If so.
Once PG fires off the nextval() for the sequence that number is 
considered used and gone even if the transaction that called nextval() 
is rolled back

Depending on how the app is written nextval() might be called, but allow 
the User to cancel the invoice creation before the insert into table is 
completed eating up Invoice numbers

To reset Sequences number call
Select setval('Sequence_Name', VAlue_To_Set_To);

Most people ignore this kind of annoyance when sequence numbers jump.  
Now if it happens all the time where every X hours eating up Z number of 
sequence numbers then one needs to dig into the logs and figure out what 
is calling nextval()

Search the logs to see what is calling nextval('My_Sequence')

You may need to turn up logging to find it.


On 7/7/2010 2:59 PM, John wrote:
> I am the only developer, DBA etc.. for a small project.  Today (yesterday was
> everything was perfect) many of the sequence numbers fell behind what is the
> actual PK value.   For example the invoice PK sequence current value = 1056
> but the table PK was 1071.  Nobody (other than myself) knows how to
> edit/access the postgres server.  So
>
> 1. Does anyone know how this could have happened?????? Other than human
> interaction.
>
> 2. Does anyone have a script to reset the sequences to match the tables?
>
> Thanks in advance,
>
> Johnf
>
>    



All legitimate Magwerks Corporation quotations are sent in a .PDF file attachment with a unique ID number generated by our proprietary quotation system. Quotations received via any other form of communication will not be honored.

CONFIDENTIALITY NOTICE: This e-mail, including attachments, may contain legally privileged, confidential or other information proprietary to Magwerks Corporation and is intended solely for the use of the individual to whom it addresses. If the reader of this e-mail is not the intended recipient or authorized agent, the reader is hereby notified that any unauthorized viewing, dissemination, distribution or copying of this e-mail is strictly prohibited. If you have received this e-mail in error, please notify the sender by replying to this message and destroy all occurrences of this e-mail immediately.
Thank you.
В списке pgsql-sql по дате отправления
От: John
Дата:
Сообщение: strangest thing happened
От: John
Дата:
Сообщение: Re: strangest thing happened
FAQ