Hi,
I want to add some new tables to the existing pub.We are using transactional replication.
As per my knowledge,by using below option we can do it.
exec sp_changepublication
@publication = '<publication_name>',
@property = 'allow_anonymous', @value = 'False'
exec sp_changepublication
@publication = '<publication_name>',
@property = 'immediate_sync', @value = 'False'
Insetad of this can i craete another publication and subscription for the new articles on the same db?
when have tried both publications are working fine and the data also replicating with out any issues.
Will there be any impact if we this method.