[quoted text, click to view] > what are you observing? sp_who2 will reveal the blocking process.
I'm trying to be preemptive about keeping subscribers from synchronizing
while I do some tasks with in my database. I found the solution, for each
publication I want to temporarily make unavailable:
EXEC sp_changemergepublication @publication = 'xxx', @property = 'status',
@value = 'inactive'
After my database maintenance, I make each publications available again by
calling the inverse:
EXEC sp_changemergepublication @publication = 'xxx', @property = 'status',
@value = 'active'
--Troy