DATA Replication
DATA Replication
Data replication not only ensures the availability of the data but also
minimize the communication cost, increase data sharing, and enhance
the security of sensitive data.
1. Synchronous Replication
In synchronous replication, the replica of the database is modified
immediately after changes are made in the relation table.
So there is no difference between the original data and the replicated
data table.
2. Asynchronous replication
In asynchronous replication, the replica will be modified after commit
action is fired on to the database.
Replication Schemes
2. No Replication
No replication means each fragment is stored exactly at one location
only.
Advantages of no replication
Concurrency can be easily minimized.
Easy recovery of data becomes easy.
Disadvantages of no replication
Poor availability of data.
Slows down the query execution process, because multiple clients
are accessing the same data at the same server.