I haven't run a deployment on my development machine for sometime. However, the last time I did there were no problems and the model hasn't changed much since then. I have tried deploying to a new SQL database and every table throws up a similar error (see attached screenshot). I have tried this with the latest beta install and it does the same thing.
The deployment does create a new empty database but no tables are added.
Have I missed something silly as it wouldn't be the first time ?
Aaron
I am not using a new SQL Server - it is the same development system I have always used and SMO hasn't been uninstalled since the last time I used DDT.
Thanks anyway,
CREATE TABLE [dbo].[BIN]( [ID] [int] NOT NULL CONSTRAINT [DF_BIN_ID] DEFAULT (0), [DEPOT] [int] NULL CONSTRAINT [DF_BIN_DEPOT] DEFAULT (0), [NAME] [varchar](40) NULL CONSTRAINT [DF_BIN_NAME] DEFAULT (''), [INACTIVE] [bit] NULL CONSTRAINT [DF_BIN_INACTIVE] DEFAULT (0), [ROWGUID] [uniqueidentifier] NOT NULL CONSTRAINT [DF_BIN_ROWGUID] DEFAULT (newsequentialid()) ON [PRIMARY]