欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mysql之delete删除记录后数据库大小不变

程序员文章站 2023-12-20 20:49:10
当delete后面跟条件的时候,则就会出现这个问题 delete from table_name where 条件 删除数据后,数据表占用的空间大小不会变。 不跟条件...

当delete后面跟条件的时候,则就会出现这个问题

delete from table_name where 条件

删除数据后,数据表占用的空间大小不会变。

不跟条件直接delete的时候。

delete from table_name

清除了数据,同时数据表的空间也会变为0

如果已经删除了表数据的很大一部分,或者有很多变化和变长表行(varchar表,varbinary、blob或文本列)进行了更改,因为删除操作后在数据文件中留下碎片所致。delete只是将数据标识位删除,并没有整理数据文件,当插入新数据后,会再次使用这些被置为删除标识的记录空间,可以使用optimize table来回收未使用的空间,并整理数据文件的碎片。

optimize table只对myisam, bdb和innodb表起作用。

optimize table 表名;

针对myisam引擎,使用optimize table 还有如下功能:

if the table has deleted or split rows, repair the table. [修复表]
if the index pages are not sorted, sort them. [索引未排序,会排序]
if the table's statistics are not up to date (and the repair could not be accomplished by sorting the index), update them.[若表的统计信息不是最新的,更新它]

对myiam数据表进行批量删除后,发现空间没有回收,要通过optimize table来回收空间

以上所述是小编给大家介绍的mysql之delete删除记录后数据库大小不变的相关知识,希望对大家有所帮助!

上一篇:

下一篇: