SQL Server Установите значение по умолчанию равное автоматическому приращению
create table t (
id int identity(100, 1) primary key,
. . .
);
NewtonsFrapple
create table t (
id int identity(100, 1) primary key,
. . .
);
dbcc checkident ('t', reseed, 100);