replication question

  • Thread starter Thread starter Lloyd Dupont
  • Start date Start date
L

Lloyd Dupont

I don't know replication well yet in an upcoming product we will develop we
will meet a problem I wonder if replication could solve although I have some
doubt.

there is 1 master DB

and different slave DBs

all with an Item table.
my purpose is to have a copy of all item in each slave DBs in the big master
DB.
is the replication a solution?
or does it sync just 1 DB with an other DB ?

my main concern / doubt is about identity column.
while an INSERT INTO Item xxx VALUES xxx might be replciated well, I will
generate different value for my ID (Identity) column and I won't know which
is which.....

IS there any build-in / generally accpeted solution for that ?

I'm thinking, otherwise, to build my own synchronization code (which would
require to add in each table 2 index/colum: LocationId, SyncDate) and write
my own webservices/sql to do it..

any tips? links? similar experiences?
 
Lloyd, you can probably get some excellent guidance on replication in the
microsoft.public.sqlserver.replication forum. Replication can be quite the
beast all by itself.
 
thanks earl !

Earl said:
Lloyd, you can probably get some excellent guidance on replication in the
microsoft.public.sqlserver.replication forum. Replication can be quite the
beast all by itself.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top