Note
This view is available starting with V4.2.1.
Purpose
This view displays the result of the import task of the current tenant.
Columns
| Column | Type | Nullable | Description |
|---|---|---|---|
| JOB_ID | bigint(20) | NO | The task ID. |
| INITIATOR_TENANT_ID | bigint(20) | NO | The tenant ID of the parent task. |
| INITIATOR_JOB_ID | bigint(20) | NO | The job ID of the parent task. |
| START_TIMESTAMP | timestamp(6) | NO | The current time of the tenant when the task started. |
| FINISH_TIMESTAMP | timestamp(6) | NO | The current time of the tenant when the task completed. |
| SRC_TENANT_NAME | varchar(64) | NO | The name of the source tenant. |
| SRC_TENANT_ID | bigint(20) | NO | The ID of the source tenant. |
| STATUS | varchar(64) | NO | The import end status: IMPORT_FINISH. |
| IMPORT_ALL | tinyint(4) | NO | Indicates whether to import all tables under the tenant. This value is 1 only when the RECOVER TABLE *.* option is specified. In other scenarios, this value is 0. |
| DB_LIST | longtext | YES | The list of databases to be fully restored. |
| TABLE_LIST | longtext | YES | The list of tables to be restored. |
| REMAP_DB_LIST | longtext | YES | The list of databases to be renamed. The format is as follows: db1:new_db1, db2:newdb2. |
| REMAP_TABLE_LIST | longtext | YES | The list of tables to be renamed. The format is as follows: db1.t1:new_t1, db1.t2:db2.new_t2. |
| REMAP_TABLEGROUP_LIST | longtext | YES | The list of table groups to be remapped. The format is as follows: tg1:new_tg1, tg2:new_tg2. This parameter specifies the original table group and the target table group. |
| REMAP_TABLESPACE_LIST | longtext | YES | The list of tablespaces to be remapped. The format is as follows: ts1:new_ts1, ts2:new_ts2. This parameter specifies the original tablespace and the target tablespace. |
| TOTAL_TABLE_COUNT | bigint(20) | NO | The total number of tables to be imported. |
| FINISHED_TABLE_COUNT | bigint(20) | NO | The number of tables that have been imported. |
| FAILED_TABLE_COUNT | bigint(20) | NO | The number of tables that failed to be imported. |
| RESULT | varchar(64) | YES | The result of the table-level restore task. Valid values: SUCCESS and FAIL. |
| COMMENT | longtext | YES | The comment. |
| DESCRIPTION | longtext | YES | The DESCRIPTION information specified in the restore command. |