SQL Server 2008 Replication Promotion
Posted
by
Stefan Mai
on Server Fault
See other posts from Server Fault
or by Stefan Mai
Published on 2011-03-03T18:03:31Z
Indexed on
2011/03/05
23:27 UTC
Read the original article
Hit count: 350
sql-server
|replication
I have a 4 node cluster, 1 subscriber and 3 publishers, all running SQL Server 2008 R2 Enterprise. The intention is that if the subscriber goes down, we can use one of the publishers to quickly build up its replacement. Our testing reveals a problem though: the subcriber databases all have Not For Replication
set to Yes
on the identity columns so that they can maintain the identity set in the subscriber. This causes a problem when they become subscribers because now we don't have identity insert functionality: we get a primary key error. Any way to "promote" a subscriber to publisher?
© Server Fault or respective owner