I have a table created with the following schema:
CREATE TABLE [dbo].[Visualizations] ( VisualizationID int identity (1,1) NOT NULL )
Trigger the identity insert with null
insert into Visualizations values (null);