Quantcast
Channel: SQL Server Replication forum
Viewing all articles
Browse latest Browse all 4054

how to add a new table to the existing publisher .

$
0
0

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.


Viewing all articles
Browse latest Browse all 4054

Trending Articles