RE: what could cause my oracle sequence nextval jump?
From: Bort, Guillermo <guillermo.bort_at_eds.com>
Date: Fri, 3 Oct 2008 11:57:58 -0500
Message-ID: <785A4E1EF4D9E745BAC909B7941BEC0094F28A@usplm201.amer.corp.eds.com>
Date: Fri, 3 Oct 2008 11:57:58 -0500
Message-ID: <785A4E1EF4D9E745BAC909B7941BEC0094F28A@usplm201.amer.corp.eds.com>
If you need secuential numbers and cannot afford either gaps or locking
and generating numbers with a pl/sql function, you can always run a
process on the affected tables and re-set the sequenced value in order
to avoid gaps.
An alternative to sequences, when you cannot afford gaps is using custom pl/sql functions and perhaps even Oracle Queues. This would cause a serious serialization of operations though.
Guillermo Alan Bort
EDS - ITO DBA Main Group
-- http://www.freelists.org/webpage/oracle-lReceived on Fri Oct 03 2008 - 11:57:58 CDT