if exists (select * from dbo.sysobjects where id = object_id(N'[Polaris].[SLCO_Month]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) drop table [Polaris].[SLCO_Month] GO create table [polaris].[SLCO_MONTH]( [SLCO_Month] [int] Not Null, [MDescription] [varchar](50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ) on [Primary] GO ALTER TABLE Polaris.SLCO_Month WITH NOCHECK ADD CONSTRAINT PK_SLCO_PMMonth PRIMARY KEY (SLCO_Month) on [PRIMARY]