Note
This view is available starting with V4.2.1.
Purpose
This view displays the information of import tasks in 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 task status. Valid values:
|
| IMPORT_ALL | tinyint(4) | NO | Indicates whether to import all tables in the source tenant. This value is 1 only when the RECOVER TABLE *.* option is specified. In other cases, 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. You can remap tables from the original table group to the target table group. The format is as follows: tg1:new_tg1, tg2:new_tg2. |
| REMAP_TABLESPACE_LIST | longtext | YES | The list of tablespaces to be remapped. You can remap tables from the original tablespace to the target tablespace. The format is as follows: ts1:new_ts1, ts2:new_ts2. |
| 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:
|
| COMMENT | longtext | YES | The comment. |
| DESCRIPTION | longtext | YES | The DESCRIPTION specified in the restore command. |