Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What are the different types of replication supported by SQL SERVER
What are the different types of replication supported by SQL SERVER ?
✍: Guest
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 be 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.
2007-10-25, 5007👍, 0💬
Popular Posts:
How To Delete All Rows a Table? - MySQL FAQs - Understanding SQL INSERT, UPDATE and DELETE Statement...
WHat will be the result of the following code? #define TRUE 0 // some code while (TRUE) { // some co...
What is the difference between const char* p and char const* p? In const char* p, the character poin...
.NET INTERVIEW QUESTIONS - What is the difference between System exceptions and Application exceptio...
How to create a thread in a program? You have two ways to do so. First, making your class "extends" ...