Purpose
The DBA_OB_RESTORE_PROGRESS view displays ongoing restore jobs.
Note
This view was introduced in OceanBase Database V4.0.0.
Columns
| Column | Type | Nullable? | Description |
|---|---|---|---|
| JOB_ID | NUMBER(38) | NO | The ID of the restore job. |
| RESTORE_TENANT_NAME | VARCHAR2(4096) | NO | The name of the tenant to restore. |
| RESTORE_TENANT_ID | NUMBER(38) | NO | The ID of the tenant to restore. |
| BACKUP_TENANT_NAME | VARCHAR2(4096) | NO | The name of the backup source tenant. |
| BACKUP_TENANT_ID | VARCHAR2(4096) | NO | The ID of the backup source tenant. |
| BACKUP_CLUSTER_NAME | VARCHAR2(4096) | NO | The name of the backup source cluster. |
| BACKUP_DEST | VARCHAR2(4096) | NO | The backup set paths. The value contains the data backup path and log archive path. |
| RESTORE_OPTION | VARCHAR2(4096) | NO | The restore option specified when the restore job is initiated. |
| RESTORE_SCN | NUMBER(38) | NO | The restore system change number (SCN). |
| RESTORE_SCN_DISPLAY | TIMESTAMP(9) | NO | The restore SCN displayed as a timestamp. |
| STATUS | VARCHAR2(4096) | NO | The restore status. The possible states of a restore job in the sys tenant are inconsistent with those in the restored tenant. Valid values for the sys tenant:
Valid values for the target tenant:
|
| START_TIMESTAMP | VARCHAR2(256) | NO | The start timestamp of the restore job. |
| BACKUP_SET_LIST | VARCHAR2(4096) | NO | The backup set paths for restore, which are separated with commas (,). Here is an example: file:///data/nfs/backup/data/backup_set_1_full,file:///data/nfs/backup/data/backup_set_2_inc. |
| BACKUP_PIECE_LIST | VARCHAR2(4096) | NO | The paths of log archive pieces for restore, which are separated with commas (,). Here is an example: file:///data/nfs/backup/archive/2_1_2,file:///data/nfs/backup/archive/2_1_3. |
| TOTAL_BYTES | NUMBER(38) | NO | The total number of bytes to restore. |
| TOTAL_BYTES_DISPLAY | VARCHAR2(42) | NO | The total number of bytes to restore, in a storage capacity unit. |
| FINISH_BYTES | NUMBER(38) | NO | The number of bytes restored. |
| FINISH_BYTES_DISPLAY | VARCHAR2(42) | NO | The total number of bytes restored, in a storage capacity unit. |
| DESCRIPTION | VARCHAR2(4096) | NO | The description specified in the restore statement. |
| RESTORE_TYPE | varchar(4096) | NO | The restore type. Valid values:
|
| RECOVER_SCN | BIGINT(20) unsigned | NO | The log recovery SCN. |
| RECOVER_SCN_DISPLAY | DATETIME(6) | NO | The log recovery SCN displayed as a timestamp. |
| RECOVER_PROGRESS | DECIMAL(6, 2) | NO | The log recovery progress. The value is rounded off to the second decimal place. For example, the value 87.65 indicates that the current recovery progress is 87.65%. |
| TABLET_COUNT | BIGINT(20) | NO | The total number of tablets to restore. |
| FINISH_TABLET_COUNT | BIGINT(20) | NO | The total number of tablets restored. |
| RESTORE_PROGRESS | DECIMAL(6, 2) | NO | The data restore progress. The value is rounded off to the second decimal place. For example, the value 87.65 indicates that the current restore progress is 87.65%. |