CREATE TABLE [dbo].[ReportFMS] ( [Identificativo] int NOT NULL IDENTITY(1,1), [FileReport] image NULL ) ALTER TABLE [dbo].[ReportFMS] ADD CONSTRAINT [PK_ReportFMS] PRIMARY KEY CLUSTERED ([Identificativo]) GO