The new InnoDB Labs release contains the ability to create and use independent multi-table general tablespaces.
This feature will provide a way to group tables together into
tablespaces at a location and filename of your choosing.
Tables using row formats of Redundant, Compact, and
Dynamic can be combined together into the same general
tablespace. Compressed tables with the same key_block_size
can also be
combined together.
The SQL syntax for creating an empty general tablespaces
is:
CREATE TABLESPACE `tblspace_name` ADD DATAFILE 'tablespace.ibd' [FILE_BLOCK_SIZE=n];
The filename can contain an absolute path or a path relative to the data …
[Read more]