MIGRATE TABLE INTO syntax is used to migration table from source to target
MigrateTableInto ::=
'MIGRATE' 'TABLE' migrationSource '.' tableName 'INTO' (databaseName '.')? tableName
migrationSource ::=
identifier
databaseName ::=
identifier
tableName ::=
identifier
databaseName is not specified, the default is the currently used DATABASE. If DATABASE is not used, No database selected will be prompted.MIGRATE TABLE ds_0.t_order INTO t_order;
UNREGISTER MIGRATION SOURCE STORAGE UNIT ds_1, ds_2;
MIGRATE, TABLE, INTO
