SET IDENTITY

SET IDENTITY_INSERT SomeTable OFF
GO
 
INSERT INTO SomeTable(IdentityColumn) VALUES(1)
 
GO
SET IDENTITY_INSERT SomeTable  OFF