What are the different types of replication? How are they used?

Answers were Sorted based on User's Feedback



What are the different types of replication? How are they used?..

Answer / meeran

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

What are the different types of replication? How are they used?..

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

What are the different types of replication? How are they used?..

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

Post New Answer

More SQL Server Interview Questions

please bar with my english i having a database called tblhallreservation in which res_date is date field has to select all the fields in table deponding on month either has to display all details for the month jan or feb and so on

1 Answers  


What is difference between Datepart() and Datename() in SqlServer?

0 Answers   Infosys,


What is the native system stored procedure to execute a command against all databases?

0 Answers  


Do you know what are pages and extents? : SQL Server Architecture

0 Answers  


What are the OS services that the SQL Server installation adds?

3 Answers  






in the physical file layout, where should the transaction log be stored in relation to the data file?

0 Answers  


How to delete the duplicate rows from a table in SQL Server ??

3 Answers  


What is an indexing technique?

0 Answers  


Diff between Composite key, Alternate Key, Candidate Key, Primary Key, Unique Key, Super Key, Foreign Key

1 Answers  


can we call functions from stored procedure in SQL Server 2005 ? How?

3 Answers  


How to retrieve error messages using odbc_errormsg()?

0 Answers  


What is a SQL Server Temporary Table?

1 Answers   Wipro,


Categories