I'm new to replication and would like to know the impact of creating a check constraint on a publisher table both in case of merge replication and transaction repl.
Both the cases, repl is already setup, would the replication break if I set up the check the constraint or would I need to re-initialize the subs after creating the check constraint.
Please let know what are precautionary steps I need to take
ALTER TABLE [dbo].[table] WITH CHECK ADD CONSTRAINT xx CHECK ()
GO
ALTER TABLE [dbo].[table] CHECK CONSTRAINT [xx]
GO
Thanks