I am using Sybase Adaptive Server Enterprise 15.7 and I have created a table like
create table student(
rollNum int identity,
name varchar(16),
primary key(rollNum)
)with identity_gap = 50
When records are inserted, rollNum jumps
from 3 to 51 --> where it should have been jumped to 53 maintaining a gap of 50.
from 60 t0 101 --> where it should have been jumped to 110 maintaining a gap of 50.
Is this behaviour expected or am I missing something ?.