vote up 1 vote down star

I've got a new client, blah blah blah, I need to break SQL Server 2000 replication from their home office to another database that they are going to completely drop (at some hosting place, it is no longer needed).

The one at the home office is the "Publisher", I believe. Honestly, I think we could just delete the other database and the home office one would run fine, but it would be nice to clean it up a bit and get rid of the publications/subscriptions stuff.

The one issues I'm concerned about is the identity insert. On tables with an auto-assigned integer primary key, each database would "reserve" a block of ids that it would use so they wouldn't trample on each other when synching up.

So, if I just dump the replication stuff, will the database insert happily until it hits the upper bound of its auto-number range? What happens then?

flag

I'm certainly no expert, but if they are syncing/merging, I would not just delete anything. – Sam Jul 28 at 21:11
Sam -- I understand what you are saying, but from my observations in the past, if their network connection goes down or replication gets screwed up for some reason, both database will happily continue on as if nothing is wrong. Now, they still try to talk to each other every 5 minutes, but when they can't reach their friend, they move on with life. I just don't know what happens after a LONG period of time and the auto-number range issue. – Matt Dawdy Jul 28 at 21:13
you should ask on serverfault.com too – Remus Rusanu Jul 29 at 3:34

1 Answer

vote up 1 vote down check

You need to clearly identify the roles that each Database and Server are playing in your replication topology before you start rolling out any changes.

As a further precaution, I would also suggest that you script out your Replication Configuration, so that you have a reference of it for safe keeping.

For details on how to correctly remove a specific replication role i.e. Subscriber / publisher / Distributor.

See Books Online: Removing Replication

link|flag
Thanks for the link, John. I can't believe I didn't find it. I must have chosen very poor search terms in my ignorance. – Matt Dawdy Jul 29 at 15:27
You're welcome, glad to help. – John Sansom Jul 29 at 20:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.