I have explained myself badly, here is the full sample
CREATE TABLE [dbo].[test](
[ID] [int] IDENTITY(1,1) NOT NULL,
[emittente] [nvarchar](100) NULL,
CONSTRAINT [PK___test] PRIMARY KEY CLUSTERED
(
[ID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE...