What is database replicaion? What are the different types
of replication you can set up in SQL Server?

Answers were Sorted based on User's Feedback



What is database replicaion? What are the different types of replication you can set up in SQL Ser..

Answer / swapna

Replication is the process of copying/moving data between
databases on the same or different servers. SQL Server
supports the following types of replication scenarios:

Snapshot replication
Transactional replication (with immediate updating
subscribers, with queued updating subscribers)
Merge replication

Is This Answer Correct ?    42 Yes 6 No

What is database replicaion? What are the different types of replication you can set up in SQL Ser..

Answer / purna chandra rao.k

Replication is way of keeping data synchronized in multiple
databases.SQL server
replication has two important aspects publisher and
subscriber.
Publisher:
Database server that makes data available for replication
is called as Publisher.
Subscriber:
Database Servers that get data from the publishers is
called as Subscribers.
There are three types of replication supported by SQL
SERVER:-
Snapshot Replication.
Snapshot Replication takes snapshot of one database and
moves it to the other
database.After initial load data can be refreshed
periodically.The only disadvantage of
this type of replication is that all data has to copied
each time the table is refreshed.
Transactional Replication
In transactional replication data is copied first time as
in snapshot replication , but later
only the transactions are synchronized rather than
replicating the whole database.You
can either specify to run continuously or on periodic basis.
Merge Replication.
Merge replication combines data from multiple sources into
a single central database.Again
as usual the initial load is like snapshot but later it
allows change of data both on subscriber
and publisher , later when they come on-line it detects and
combines them and updates accordingly

Is This Answer Correct ?    37 Yes 4 No

What is database replicaion? What are the different types of replication you can set up in SQL Ser..

Answer / sivakumar

Replication
Replication is the process of copying/moving data between
databases on the same or different servers.
SQL Server upports the following types of replication
scenarios:

Snapshot replication:
The Publisher sends a snapshot of the published data to
Subscribers at scheduled intervals.

Transactional replication:
The Publisher streams transactions to the Subscribers after
they receive an initial snapshot of the published data.

Merge replication:
The Publisher and Subscribers can update the published data
independently after the Subscribers receive an initial
snapshot of the published data. Changes are merged
periodically. Microsoft SQL Server Mobile Edition can only
subscribe to merge publications.

Is This Answer Correct ?    11 Yes 2 No

What is database replicaion? What are the different types of replication you can set up in SQL Ser..

Answer / neeraj singh bhandari

Replication is the technique provided by MS SQl server to
keep the replicate copy of database.

There are four basis type of Replication which we can set
up in sql server

1. Snapshot replication – It is used when data at Publisher
is static means not changing frequently and Subscriber need
update data

2. Transactional replication - It is used when data is
changing frequently at publisher and Subscriber need on
line data from publisher.

3. Merge replication- It is used when there is no constant
connection between Publisher and Subscriber. When they come
on line then data will replicate. In replication data
can conflict and resolve this there is rule set up already.

4. Transactional replication with Updateable Subscription-
It is similer to Transactional replication but update
backs to Publisher from Subscriber. In this it add extra
field in table called ms_repl- etc to keep the update data
from Subscriber.



We can also implement Peer to Peer replication which is
Headless topology. To do this we need enterprise edition of
sql server 2005. In this there is more than one Publishers
and one or more Subscribers. Every participant is both
Publisher and Subscriber. This is mostly use when every one
wants to read and modify the data.

Is This Answer Correct ?    8 Yes 4 No

What is database replicaion? What are the different types of replication you can set up in SQL Ser..

Answer / srisenthil

Replication is a method of copying data from one database
to other database or one server to another

there are three types of replication

(1) transactional (2)snapshot (3) merge (4) logshipping and
in 2005 one more type is introducde which was called as
peer to peer replications

Is This Answer Correct ?    11 Yes 15 No

Post New Answer

More SQL Server Interview Questions

what command is used to create a table by copying the structure of another table?

7 Answers  


What should be the fill factor for indexes created on tables? : sql server database administration

0 Answers  


What is data modification?

0 Answers  


What method is used by the Command classes to execute SQL statements that return single values?

0 Answers   B-Ways TecnoSoft,


What is the stuff and how does it differ from the replace function?

0 Answers  






How to loop through result set objects using mssql_fetch_array()?

0 Answers  


How the data stores in a page?

1 Answers  


how you can move data or databases between servers and databases in sql server? : Sql server administration

0 Answers  


What are the new features introduced in SQL Server 2000 (or the latest release of SQL Server at the time of your interview)? What changed between the previous version of SQL Server and the current version?

0 Answers  


What is a trigger what are the advantages of trigger?

0 Answers  


what is the maximum size of a row in sql server 2000 and 2005

2 Answers  


as a part of your job, what are the dbcc commands that you commonly use for database maintenance? : Sql server database administration

0 Answers  


Categories