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

猜你喜欢

转载自icbm.iteye.com/blog/2025058