Overview

Overview of GOLDILOCKS Replication

Database replication efficiently and consistently distributes data for data recovery when an error occurs in the original database by using the remote database, so that it enables sustained service. It is also used to build multiple database with same data.
GOLDILOCKS replication supports CYCLONE, which is a tool using Change Data Capture (CDC) method.

Change Data Capture (CDC)

This method captures and analyzes the redo log generated during the database operation, and performs the replication.

Only the asynchronous mode is supported because CYCLONE is available after the changes of the database are stored in the redo log file.

The interval may occur between the original database and the remote database of the replication because CDC method supports only the asynchronous mode. When the failure of original database or equipment occurs in the state of which the replication to the remote database is not completed, the remote database is in the state of which the interval is not reflected.

LOGMIRROR can be used to complement the data not reflected due to the interval of the asynchronous mode.

LOGMIRROR is a tool which replicates the redo log files. It sends and stores the redo logs generated from the original database to the remote equipment without any loss of data. Therefore, using LOGMIRROR can prevent loss of data.

It provides CYFILE tool storing the transaction data which was processed and committed in the database in Comma-Separated Values (CSV) format file by using CDC method. A user can directly process the data by using the stored file or converts the data according to its purpose.

CYFILE directly captures the redo log file by using CDC method and analyzes the transaction in real time, then stores the contents in CSV format file.

Characteristics

CYCLONE

The following are the characteristics of CYCLONE.

LOGMIRROR

The following are the characteristics of LOGMIRROR.

CYFILE

The following are features of CYFILE.