Reputation: 2020
I want to rename a subscription database in merge replication. All the subscriptions are synchronized properly.
IS it possible to rename one of the subscription database?
Upvotes: 0
Views: 627
Reputation:
Yes you can
sample query :
update sysmergesubscriptions set db_name='YourDBName'
where subscriber_server='YourSubscriber'
Upvotes: 1