How to drop and recreate IX_DimCountry CONSTRAINT
CREATE TABLE [WarehouseMgmt].[DimCountry] (
[Id] INT IDENTITY (1, 1) NOT NULL,
CONSTRAINT [IX_DimCountry] UNIQUE NONCLUSTERED ([Id] ASC) ON [PRIMARY]
and to have this
CREATE TABLE [WarehouseMgmt].[DimCountry] (
[Id] INT NOT NULL,
CONSTRAINT [IX_DimCountry] UNIQUE NONCLUSTERED ([Id] ASC) ON [WH_IX]
And also is there a way just to alter Id to not be IDENTITY anymore?