Viene visualizzato un errore se l'identity
supererebbe i limiti del tipo di dati rendendo discutibile il resto della tua domanda. Puoi vederlo da
CREATE TABLE #T
(
id INT IDENTITY(2147483647,1)
)
INSERT INTO #T
DEFAULT VALUES
INSERT INTO #T
DEFAULT VALUES /*Arithmetic overflow error converting IDENTITY to data type int.*/
GO
SELECT * FROM #T
DROP TABLE #T