CREATE TABLE fCatalog (
fcId int IDENTITY(1,1) NOT NULL,
fcName varchar(50),
fcType int,
fcOt varchar(50),
fcDate DATETIME DEFAULT GETDATE()
)
alter table fCatalog with nocheck add
constraint [PK_fCatalog] PRIMARY KEY CLUSTERED
(
[fcId]
) ON [PRIMARY]
GO
/*drop table fCatalog */