SyncStage
Updated at:
The SyncStage data type defines the stages of data synchronization for a physical table in a global table.
Data structure
SYNC_INIT: Initialization.
SYNC_FULL: Full synchronization.
SYNC_INCR: Incremental synchronization.
enum SyncStage {
SYNC_INIT = 1;
SYNC_FULL = 2;
SYNC_INCR = 3;
}Is this page helpful?