I'm using the "Sql Server 2008 Database Project" to help us updating and maintaining our databases. Now I'm facing this problem when renaming a primary key column.

The column has no identity on, not null and is a uniqueidentifier, generated by the application. Furthermore it also has a timestamp column used for concurrency.

When doing an update comparison, the changes for renaming the column, and changing any relations is indeed generated. The problem seems to be with the temp table that the generated script is creating.

CREATE TABLE [dbo].[tmp_ms_xx_Languages] (
[ID_Language]    UNIQUEIDENTIFIER NOT NULL,
[Name]           NVARCHAR (250)   NOT NULL,
[CurrentVersion] INT              NOT NULL,
[TimeStamp]      TIMESTAMP        NOT NULL

);

ALTER TABLE [dbo].[tmp_ms_xx_Languages]
ADD CONSTRAINT [tmp_ms_xx_clusteredindex_PK_Languages] PRIMARY KEY CLUSTERED ([ID_Language] ASC) WITH (ALLOW_PAGE_LOCKS = ON, ALLOW_ROW_LOCKS = ON, PAD_INDEX = OFF, IGNORE_DUP_KEY = OFF, STATISTICS_NORECOMPUTE = OFF);

IF EXISTS (SELECT TOP 1 1
       FROM   [dbo].[Languages])
BEGIN
    INSERT INTO [dbo].[tmp_ms_xx_Languages] ([Name], [CurrentVersion])
    SELECT [Name],
           [CurrentVersion]
    FROM   [dbo].[Languages];
END

DROP TABLE [dbo].[Languages];

As you can see from the script, the id and the timestamp field is not copied to the temp table, and an' error will occur when trying to deploy this on a db where data exists in the table.

Does anybody have a solution to this problem, or maybe a workaround?

I've been playing around with the settings in the database.sqldeployment file, but with no luck.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.