Imagine we have a table:
create table MYTABLE (
id int IDENTITY(1,1)
,name varchar(10)
)
We have to insert a lot of rows into the table.
Does anybody know what will happen when a generated identity value oversteps a maximal integer value (2^32-1)?