开启了Innodb的innodb_file_per_table这个参数之后[innodb_file_per_table = 1],也就是启用InnoDB的独立表空间模式,便于管理.此时,在新建的innodb表的数据库目录下会多出来一个.ibd这个文件.这个就是此时的数据文件了.mysql会把这个innodb表的数据存放在这个文件中.并且每个innodb表此时都会对应这么一个ibd文件. 看官方文档: If innodb_file_per_table is disabled (the defaul…
--MySQL表空间集 ----------------------2014-09-20 1. 收缩ibdata的方法,目前MySQL依然没有提供收缩ibdata的方法,只能重构,下面是5.7的步骤. Decreasing the Size of the InnoDB Tablespace Currently, you cannot remove a data file from the system tablespace. To decrease the system tablespace s…