SHOW MIGRATION LIST

描述

SHOW MIGRATION LIST 语法用于查询数据迁移作业列表

语法

语法 铁路图

  1. ShowMigrationList ::=
  2. 'SHOW' 'MIGRATION' 'LIST'

返回值说明

说明
id数据迁移作业ID
tables迁移表
job_item_count数据迁移作业分片数量
active数据迁移作业状态
create_time数据迁移作业创建时间
stop_time数据迁移作业停止时间

示例

  • 查询数据迁移作业列表
  1. SHOW MIGRATION LIST;
  1. mysql> SHOW MIGRATION LIST;
  2. +---------------------------------------+---------+----------------+--------+---------------------+---------------------+
  3. | id | tables | job_item_count | active | create_time | stop_time |
  4. +---------------------------------------+---------+----------------+--------+---------------------+---------------------+
  5. | j01013a38b0184e07c864627b5bb05da09ee0 | t_order | 1 | false | 2022-10-31 18:18:24 | 2022-10-31 18:18:31 |
  6. +---------------------------------------+---------+----------------+--------+---------------------+---------------------+
  7. 1 row in set (0.28 sec)

保留字

SHOWMIGRATIONLIST

相关链接