MySQL有一个OPTIMIZE TABLE命令,可以用来回收MySQL安装中未使用的空间。是否有一种方法(内置命令或通用存储过程)可以为数据库和/或服务器安装中的每个表运行这种优化,还是必须自己编写脚本?


当前回答

我的1美分,添加和TABLE_TYPE='BASE TABLE',所以我们可以跳过'VIEW'类型。

for table in `mysql -sss -e "select concat(table_schema,'.',table_name) from information_schema.tables where table_schema not in ('mysql','information_schema','performance_schema') and TABLE_TYPE='BASE TABLE' order by data_free desc;"`
do
mysql -e "OPTIMIZE TABLE $table;"
done

其他回答

从phpMyAdmin和其他来源/编辑器,您可以使用:

SET SESSION group_concat_max_len = 99999999;
SELECT GROUP_CONCAT(concat('OPTIMIZE TABLE `', table_name, '`;') SEPARATOR '') AS O
FROM INFORMATION_SCHEMA.TABLES WHERE 
TABLE_TYPE = 'BASE TABLE'
AND table_name!='dual'
AND TABLE_SCHEMA = '<your databasename>'

然后,您可以复制和粘贴结果到一个新的查询或执行它从您自己的源。 如果你在phpMyAdmin中看不到整个语句:

使用mysql客户端可以对数据库中的所有表进行优化/检查和修复。

首先,你应该得到所有的表列表,用','分隔:

mysql -u[USERNAME] -p[PASSWORD] -Bse 'show tables' [DB_NAME]|xargs|perl -pe 's/ /,/g'

现在,当你有所有要优化的表列表时:

mysql -u[USERNAME] -p[PASSWORD] -Bse 'optimize tables [tables list]' [DB_NAME]

我做了这个“简单”的脚本:

set @tables_like = null;
set @optimize = null;
set @show_tables = concat("show tables where", ifnull(concat(" `Tables_in_", database(), "` like '", @tables_like, "' and"), ''), " (@optimize:=concat_ws(',',@optimize,`Tables_in_", database() ,"`))");

Prepare `bd` from @show_tables;
EXECUTE `bd`;
DEALLOCATE PREPARE `bd`;

set @optimize := concat('optimize table ', @optimize);
PREPARE `sql` FROM @optimize;
EXECUTE `sql`;
DEALLOCATE PREPARE `sql`;

set @show_tables = null, @optimize = null, @tables_like = null;

要运行它,只需将其粘贴到连接到数据库的任何SQL IDE中。

注意:这段代码在phpmyadmin上不起作用。

它是如何工作的

它运行一个show tables语句并将其存储在一个准备好的语句中。然后在选中的集合中运行一个优化表。

您可以通过在var @tables_like中设置不同的值来控制要优化哪些表(例如:set @tables_like = '%test%';)。

我的建议是:从碎片率最高的表开始

for table in `mysql -sss -e "select concat(table_schema,".",table_name) from information_schema.tables where table_schema not in ('mysql','information_schema','performance_schema') order by data_free desc;"
do
mysql -e "OPTIMIZE TABLE $table;"
done

我的1美分,添加和TABLE_TYPE='BASE TABLE',所以我们可以跳过'VIEW'类型。

for table in `mysql -sss -e "select concat(table_schema,'.',table_name) from information_schema.tables where table_schema not in ('mysql','information_schema','performance_schema') and TABLE_TYPE='BASE TABLE' order by data_free desc;"`
do
mysql -e "OPTIMIZE TABLE $table;"
done