Hi,
IDENTITY COLUMN is not the same thing as AUTO INCREMENTING.
There is no ANSI requirement that IDENTITY be Contigous numbers just that they be UNIQUE across the whole table.
So which do you want a UNIQUE IDENTITY COLUMN ( which is implmeneted in v2r6 ) or an AUTO INCREMENT column like....
Insert into table
sel MAX(incr)+1,
value,
value,
value ....
from table;