InnoDB tables.
InnoDB table and its indexes in its own file.
[mysqld] section of my.cnf:
[mysqld]innodb_file_per_table
InnoDB stores each newly created table into its own file tbl_name.ibd in the database directory where the table belongs.
MyISAM storage engine does.
MyISAM divides the table into a data file tbl_name.MYD and the index file tbl_name.MYI.
InnoDB, data and the indexes are stored together in the .ibd file.
tbl_name.frm file is still created as usual.
Can I use raw devices for shared tablespace?
© 2007 John Michael Pierobon