Authors.com

Authors, Writers, Publishers, and Book Readers

The advent of heterogeneous information systems has necessitated the synchronization of multiple applications and business processes with databases. As such the most challenging task for businesses is to achieve a real-time update of the modified data so that both the source and the target databases can be use constantly.

A traditional approach to synchronization of database is based on a comprehensive scanning of the original as well as the target databases in order to find the data that is being modified or changed. It is only after performing this that essential actions are implemented over this data: -  

  • Insert all rows from data source that were missing in the destination
  • Delete from target database all rows that were missing in the source 
  • Update or upgrade all rows

One big problem of this syncing method is that it is extremely long. For example, if there are two databases – SQL Server & MySQL, both having over 1 million rows. Now, assuming that the average performance of traditional synchronization is 100 rows/ sec. It is not possible to further improve by simply deploying high speed database access components or even by the techniques as this method is incapable of bulk manipulations over data. Eventually, every pass of traditional synchronization needs over 2 ½ hours for a considered databases that makes it totally impossible to run on an hourly basis. 

There is a different approach to solve this problem. You can do it by iterating only the rows that have already been modified since the earlier run of synchronization. It is possible to execute based on the following algorithm: -

  • In the first run, the program performs traditional database synchronization as mentioned above
  • Additionally, the program generates a trigger on insert, delete and even for the updates of all tables that’s being synchronized. Every triggers write information about the modified row into a special service table
  • And then from the second run, the program retrieves information about modified rows directly from service table and updates only those rows

This method is known as incremental/trigger-based database synchronization. Now, let’s see how incremental process could reduce database synchronization time. Even with a record-by-record method of data processing, incremental method could be executed in a near to real time mode if it is scheduled properly. However, it’s also possible to execute bulk rows synchronization processing methods because every modified data that has accumulated in one place is properly grouped by the type of operation - insert, delete & update. The bulk rows method of data processing yields over 10 times higher than the synchronization process. 

Incremental/trigger-based database synchronization method simply applies the following requirements: -

  • Access to synchronized databases which have sufficient privileges for creating triggers and tables
  • Every synchronized tables must have properly defined primary key

In order to evaluate the overall advantages of incremental synchronization, you may use Microsoft SQL – MySQL Sync tool.

Views: 7

Comment

You need to be a member of Authors.com to add comments!

Join Authors.com

Sponsored Links

Most Active Members

1. Edward F. T. Charfauros

San Diego, CA, United States

2. RF Husnik

Green Bay, WI, United States

3. Rosemary Morris

Watford, United Kingdom

© 2024   Created by Authors.com.   Powered by

Badges  |  Report an Issue  |  Terms of Service