Hello,
I dropped a local publication and a subscription, however I still see a table in publication database having NOT FOR REPLICATION property on Identity Column:
[Id] [int] IDENTITY(1,1) NOT FOR REPLICATION NOT NULL,
What is the best way to get rid of NOT FOR REPLICATION property without affecting Identity
alter table [dbo].[MyTable] alter column [Id] DROP NOT FOR REPLICATION
or anything else?