Unexpected behavior:
I am encountering strange behavior of Oracle sequences with 11g (works with 10g):
CREATE SEQUENCE test_sequence START WITH 1;
CREATE TABLE test_table ( val INT );
INSERT INTO test_table VALUES ( test_sequence.NEXTVAL );
Even though the sequence starts with 1, the first value inserted is 2:
SELECT * FROM test_table;
VAL
----------
2
Expected behavior:
Selecting NEXTVAL without the insert works as expected:
CREATE SEQUENCE test_sequence_2 START WITH 1;
SELECT test_sequence_2.NEXTVAL FROM dual
NEXTVAL
----------
1
Question:
Can anyone reproduce this using Oracle 11g? Is this a known issue?
I'm using
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production.
1on myOracle Database 11g Release 11.1.0.6.0 - 64bit Production– Quassnoi Nov 11 '10 at 11:1811.2(see Jeffrey's answer). Thanks for testing! – Peter Lang Nov 11 '10 at 12:24