I have created a table with following query,
CREATE TABLE [dbo].[Table_A](
[ID] [int] IDENTITY(1,1) NOT NULL,
[Name] [nvarchar](50) NULL,
[Value] [nvarchar](50) NULL,
CONSTRAINT [PK_Table_A] PRIMARY KEY CLUSTERED
([ID] ASC)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]) ON [PRIMARY]
GO
Currently its appearing like this
I'm trying to change above to below one
Since I cannot do it using SQL Server management studio, Now I'm trying to set this identity off with following query
SET IDENTITY_INSERT Table_A OFF
Query running properly but its stays same