Comments
1 comment
-
Hi @Matthew_Sontum
Thanks for your post.
This could be something that a support engineer can investigate for you. If you have a support contract could you please send us a ticket for this?
Kind regards
Richard Lynch.
Add comment
Please sign in to leave a comment.
ALTER TABLE [dbo].[Person] ENABLE CHANGE_TRACKING WITH (TRACK_COLUMNS_UPDATED = OFF);
In the comparison it displays as:
ALTER TABLE [dbo].[Person] ENABLE CHANGE_TRACKING WITH (TRACK_COLUMNS_UPDATED = ON)
And is thus a conflict when compared against the database, where it lists the ALTER statement as:
Note: Changing the definition in the script to ALTER TABLE [dbo].[Person] ENABLE CHANGE_TRACKING resolves the issue, but I still consider this a bug, in that explicitly setting it to OFF in the script does not work, and this is how it exists in our source control.