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);
Maybe you need to add a dummy column to do this, and just insert NULL
into it, the dummy column would allow for NULLs. Although your table structure does not make sense, I would suggest this in order for it to work.
See this (example "F. Load data using the DEFAULT VALUES option"):
INSERT INTO [Visualizations] DEFAULT VALUES;