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 ?    6 Yes 0 No

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

Answer / sachin rathi

Database replication is the creation and maintenance of
multiple copies of the same database.

In most implementations of database replication, one
database server maintains the master copy of the database
and additional database servers maintain slave copies of
the database.

Database writes are sent to the master database server and
are then replicated by the slave database servers.

Database reads are divided among all of the database
servers, which results in a large performance advantage due
to load sharing.

In addition, database replication can also improve
availability because the slave database servers can be
configured to take over the master role if the master
database server becomes unavailable.

Is This Answer Correct ?    4 Yes 0 No

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

Answer / vijay kona

Replication is the process of moving database objects from
one server to another server.
There are 3 types:
1.snapshot replication
2.Transactional replication
3.Merge replication(2way communication process)

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More SQL Server Interview Questions

How to start sql server browser service?

0 Answers  


i have a table #temp1(id, Name groupname ) and record like this 1 R1 S 2 R3 S 3 R2 S 4 R4 D 5 R5 D 6 R6 K 7 R7 K 8 R8 L 9 R9 L 10 R10 L 11 R11 K and i want to display record based on user defind sorting order e.g. 1 R4 D 2 R5 D 3 R6 K 4 R7 K 5 R11 K 6 R1 S 7 R3 S 8 R2 S 9 R8 L 10 R9 L 11 R10 L

8 Answers  


please tell me the query to get details of the employee having the second largest salary

11 Answers   247Customer,


Can we check locks in database? If so, how can we do this lock check?

0 Answers  


Explain what is dbcc?

0 Answers  






What is the system function to get the current user's user id?

3 Answers   TCS,


Is it possible to run multiple publications and different type of publications from the same distribution database? : sql server replication

0 Answers  


How can you see what type of locks used?

1 Answers  


How to use user defined functions in expressions?

0 Answers  


Explain the architecture of SQL Server?

2 Answers   ABC, HP, Oracle,


What is partition, how will you implement it? : sql server analysis services, ssas

0 Answers  


what kind of lan types do you know? : Sql server database administration

0 Answers  


Categories