远行的心 发表于 2016-10-19 09:15:26

MySQL 5.6中innodb的可传输表空间(transportable tablespace)

目标端:
alter table t discard tablesapce;

源端:
flush tables t for export;

复制 t.ibd, t.cfg到目标端。

源端:
unlock tables;

目标端:
alter table t import tablespace;

参考地址:
14.2.5.5 Copying Tablespaces to Another Server (Transportable Tablespaces)
http://dev.mysql.com/doc/refman/5.6/en/tablespace-copying.html
页: [1]
查看完整版本: MySQL 5.6中innodb的可传输表空间(transportable tablespace)