I created an Oracle sequence:
Create sequence seq_acteurs start with 1 increment by 1;
Normally the sequence must be incremented by 1, but when insert into Acteurs
table, the sequence s
incremented by 50! That doesn't seem logical. Why is this so?
Any help will much apreciated.