The PhyTableStatus data type represents the status of a physical table in a global table.
Data structure
PHY_PENDING: Pending. The system is waiting for the configuration of other replica tables to complete.
PHY_INIT: Initializing. The replica table is being created or configured.
PHY_SYNCDATA: Synchronizing. The system is synchronizing historical data and enabling incremental data synchronization.
PHY_READY: Ready. Synchronization of historical data and the incremental tunnel for the replica table is complete. The table is not writable.
PHY_ACTIVE: Active. The replica table is synchronizing and available for read and write operations.
PHY_UNBINDING: Detaching. The replica table is being detached from the global table. This operation does not delete the replica table or its data.
PHY_UNBOUND: Detached. The replica table is detached from the global table. This operation does not delete the replica table or its data.
enum PhyTableStatus {
PHY_PENDING = 1;
PHY_INIT = 2;
PHY_SYNCDATA = 3;
PHY_READY = 4;
PHY_ACTIVE = 5;
PHY_UNBINDING = 6;
PHY_UNBOUND = 7;
}