Viewing 6 posts - 1 through 6 (of 6 total)
I think distribution database keeps track of transactions that are processed by distribution agent. So, as you suggest, the distribution agent will queue up all the trasactions and then...
November 7, 2002 at 9:14 am
You can also accomplish this from Query Analyser with something like:
use master
GO
exec sp_adddistributor @distributor = @@servername, @password = N'your_password'
GO
- Adding the distribution database
exec sp_adddistributiondb...
November 5, 2002 at 2:26 pm
I have three servers at this point (a publisher and two subscribers), but I need to be able to support more subscribers in the future.
Dan, I could still use something...
November 5, 2002 at 1:56 pm
That's why your range is huge - to avoid having subscribers step on each others' toes... or how do you assign a new (maybe non-consecutive) range to a subscriber that...
November 4, 2002 at 3:49 pm
Yeah, it makes sense what you are doing here... I'm guessing you still have the 'Auto Range Management' option on for these tables (with range size of 1000000 or...
November 4, 2002 at 2:33 pm
quote:
I now reset all tables' IDs after each replication using some simple SQL and a subscribers table which contains a subscriber number...
November 4, 2002 at 12:56 pm
Viewing 6 posts - 1 through 6 (of 6 total)