Showing posts with label Mysql Transportable Tablespaces. Show all posts
Showing posts with label Mysql Transportable Tablespaces. Show all posts

Transportable Tablespaces 5.7

In MySQL 5.7 transportable tablespaces works at a partition level:
alter table <table> discard partition <partition> tablespace;
alter table <table> import partition <partition> tablespace;

MySQL 5.6 Transportable Tablespaces Example


Transportable tablespaces allows copying individual InnoDB tables from one MySQL instance to another.

Here is a basic example of it's usage.