Hello Hilary,
Thank you for your suggestion.
My first question in my post was:
[quoted text, click to view] >1) Does SQL2005 support something akin to 'multiple master-single slave
>replication?
Just to be clear, does SQL2005 support multiple-master servers replicating
to a single slave server? (From you answer, it seems that it does not.)
Continuing with your suggestion...according to:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnpatterns/html/DpGlossary.asp
peer-to-peer replication is another name for master-master replication.
I don't believe this applies.
My data need only travel one way--from the lower-tier Database A(n) to the
higher-tier Database B.
Also, the lower-tier has n databases ( A(1)...A(n)), not just a single
database.
I really do appreciate your input and value your comments.
I will carefully look into any thoughts you have on my situation.
Thank you very much for your time.
--
Allan Michaels
Ann Arbor, MI
[quoted text, click to view] "Hilary Cotter" wrote:
> Have a look at peer-to-peer replication.
>
> --
> Hilary Cotter
> Director of Text Mining and Database Strategy
> RelevantNOISE.Com - Dedicated to mining blogs for business intelligence.
>
> This posting is my own and doesn't necessarily represent RelevantNoise's
> positions, strategies or opinions.
>
> Looking for a SQL Server replication book?
>
http://www.nwsu.com/0974973602.html >
> Looking for a FAQ on Indexing Services/SQL FTS
>
http://www.indexserverfaq.com >
>
>
> "Allan Michaels" <allanm@newsgroups.nospam> wrote in message
> news:2213B061-867D-42CC-A6C1-532396345314@microsoft.com...
> > Hello,
> >
> > I'm closely examining the pattern
> >
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnpatterns/html/ArcDataReplication.asp
> >
> > I have a 'Composite Movement Set' and a situation similar to the
> > 'Complex Data Movement for Reporting Purposes, Figure 4'.
> > Specifically,
> > N databases residing locally on computers A(1) thru A(N) (i.e. one
> > DB/computer)
> > 1 'central' computer with a Database, let's say B.
> >
> > I must get the data from databases A(1) thru A(N) into B.
> > All schemas are identical. Unique guids are used for primary keys.
> >
> > I see references on the web to desired DBMS solutions with 'multiple
> > master-single slave replication', where DBs sitting on multiple servers
> > can
> > be replicated to a
> > single DB sitting on yet another server.
> >
> > I understand that specific answers on my exact situation may be difficult,
> > so my questions are...
> >
> > 1) Does SQL2005 support something akin to 'multiple master-single slave
> > replication? (I have looked but cannot find the answer.)
> >
> > 2) If SQL2005 does support this, is this a possible implementation of the
> > 'Move Copy of Data Pattern' that I provide the link to above.
> >
> > Thank you very much for your help.
> >
> > --
> > Allan Michaels
> > Ann Arbor, MI
>
>
Hi Allan,
Basicly, there is no multiple-master single slave concept in SQL Server.
However, you could implement by some other technical.
In SQL Server you can use peer-to-peer replication and set up several peers
and define the destination database to be the same.
In this scenario, if your source databases will conflict with some record
as in the primary keys, you may use the Merge replication to check the
conflicts.
Here is a Books online article about the Merge replication:
Merge Replication Overview
http://msdn2.microsoft.com/en-us/library/ms152746(SQL.90).aspx
Hope this will be helpful!
Sincerely,
Wei Lu
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.