What are the different types of replication? How are they used?
Answers were Sorted based on User's Feedback
Replication is the process of sharing data between
databases in different locations. Using replication, we can
create copies of the database and share the copy with
different users so that they can make changes to their
local copy of database and later synchronize the changes to
the source database.
Microsoft SQL Server 2000 supports the following types of
replication:
Snapshot Replication
Transactional Replication
Merge Replication
Is This Answer Correct ? | 12 Yes | 0 No |
Answer / raghuram
Replication is a process of copying/moving data between
databases on the same or different servers.In Replication,
We have Three server.
a) Publisher : It is the Principal server
b) Distributor : It sends the data from
Publisher to Subscriber
c) Subscriber : It is the secondary server
which stores the received data
The types of Replication are,
a) Snapshot Replication : It distributes data
exactly as it appears at a specific moment in time and does
not monitor for updates to the data. It is the best used
method of replicating data that changes infrequently or
where the most up-to-date values are not requirement. When
synchronization occurs, the entire snapshot is generated
and sent to the subscribers.
b) Merge Replication : It is the process of
distributing data from Publisher to subscriber, allowing
the Publisher and Subscriber to make update data while they
are connected or disconnected, and then merging the updates
between sites when they are connected.
c) Transactional Replication : An initial snapshot
of data is applied to subscriber, and when data
modifications are made at the publisher, the individual
transactions are captured and propogated to subscriber.
Is This Answer Correct ? | 7 Yes | 1 No |
Answer / suguk
The are three types Replication are
*Unidirectional*Bidirectional*Peer-Peer
*unidirectionalReplication
Transactions that occur at a source table are replicated
over WebSphere® MQ queues to a target table or are passed
as input parameters to a stored procedure to manipulate the
data.
Transactions that occur at the target table are not
replicated back to the source table.
The target table typically is read only or is not updated
by applications other than the Q Apply program.
*Bidirectional
Number of replication queue maps
Between each pair of servers that participate in
bidirectional replication, you need two replication queue
maps. For example, if you have two servers named SERVER_RED
and SERVER_GREEN, you need two replication queue maps:
One to identify the WebSphere® MQ queues that transport
data from SERVER_RED to SERVER_GREEN
One to identify the WebSphere MQ queues that transport data
from SERVER_GREEN to SERVER_RED
Number of Q subscriptions
For every logical table that is replicated in bidirectional
replication, you need a pair of Q subscriptions between the
two servers. For example, if you have two servers named
SERVER_RED and SERVER_GREEN, then two Q subscriptions are
built for you:
One from the source table on SERVER_RED to the target table
on SERVER_GREEN
One from the source table on SERVER_GREEN to the target
table SERVER_RED.
*Peer-peer
Peer-to-Peer applications are defined as programs which
allow computers to share data in the form of music, movies,
games or any computer file or software over a local network
and the Internet. Fordham University does not, at this
time, prohibit and does not block the use of peer-to-peer
applications on any part of its network. The University
understands that there are legitimate academic uses for
such applications. However, use of these applications has
been known to cause problems, which can affect the entire
University community.
Is This Answer Correct ? | 2 Yes | 5 No |
How to concatenate two strings in SQL Server.
What is difference between createstatement and preparedstatement?
what is the out put of below queries? a. select * from Emp where null = null; b. select * from Emp where 1=1;
Explain the relational database management system (rdbms)?
what is the order of execution of where,having,group by in select stement
6 Answers IBM, Tanla Solutions,
How to configure odbc dsn with different port numbers?
what are the types of indexes? : Sql server database administration
whate is advantages of sql server 2000
What is database isolation in sql server? : sql server database administration
Explain about thread and memory management process of SQL?
What is referential integrity? What are the advantages of it?
4 Answers Descon, Digital Domain,
Do you know what is user defined datatypes and when you should go for them?