Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: strange behaviour of sequence
Probably you use the (default) 'cache 20' and shut down the database between the 'BREAD4' and 'BREAD21' insert.
Or you use OPS/RAC, which cause each instance to cache this '20' numbers.
This can be avoided by using the 'nocache' option, but then you serialize access to the sequence number, which can be a very bad idea from the performance perspective..
regards,
Mario
-----Original Message-----
Sent: woensdag 29 januari 2003 11:34
To: Multiple recipients of list ORACLE-L
Guys,
one of my developers is using sequence to auto-increment the value of a column while inserting.
he has created a sequence like this.
SQL > create sequence testseq start with 1;
and then uses a INSERT statement as below in a JSP.
insert into testtab values ('BREAD'||testseq.nextval);
after some inserts .....when he does SELECT from TESTTAB...he
finds
the values as :
BREAD1
BREAD2
BREAD3
BREAD4
BREAD21
BREAD22
it should increment by 1.but it is not so ?
any hint/clue ????
Regards,
Jp.
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: oraora oraora
INET: oraoraora_at_rediffmail.com
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services ---------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Broodbakker, Mario
INET: Mario.Broodbakker_at_hp.com
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services ---------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Wed Jan 29 2003 - 05:33:45 CST
![]() |
![]() |