1

我正在尝试优化日常统计工作所必需的索引大小,以便我可以减少表大小并降低日常统计工作的速度作为权衡。

为此,我想获取表中每个索引的大小。

"show table status from"仅显示Index_length表中所有索引的总大小。

有没有办法检索表中每个索引的大小?

4

2 回答 2

1

php上的例子:

<?php
error_reporting(E_ERROR | E_PARSE | E_COMPILE_ERROR);

$c = mysql_connect('localhost', 'user_root', 'user_root_pass');

function filesize_($size=0, $round=2){
        $type = array('bytes', 'Kb',  'Mb', 'Gb', 'Tb', 'Pb');
        for ($i=0; $size>1024; $size=$size/1024){$i++;}
        if(empty($i)){$i='0';}
        return round($size, $round).' '.$type[$i];
}

if( !$c ){
    echo 'mysql not found: '.__FILE__; exit;
}
$sum = array();
$sql = 'SHOW DATABASES';
if( $q = mysql_query('SHOW DATABASES') ){
        $a = array();
        while($r = mysql_fetch_row($q) ){
                $a[] = $r['0'];
        }
        foreach($a as $name){
                $sql = 'error select db: '.$name;
                if( @mysql_select_db($name, $c)  ){
                        $sql = 'error SHOW TABLE STATUS: '.$name;
                        if($q = mysql_query('SHOW TABLE STATUS')){
                                while($r = mysql_fetch_assoc($q) ){
                                        $sum[ $r['Engine'] ] += $r['Index_length'];
                                }
                        }else{
                                echo $sql."\n";
                        }
                }else{
                        echo $sql."\n";
                }
        }
}else{
        echo 'error:'.$sql;
}
echo 'Engine indexes sum:'."\n";
foreach($sum as $engine => $count){
        echo $engine."\t".filesize_($count)."\n";
}
echo 'thats all.'."\n";

查看结果脚本运行,例如: php this_script.php 你得到结果:

Engine indexes sum:
MEMORY  0 bytes
MyISAM  6.84 Gb
InnoDB  416 Kb
CSV 0 bytes
thats all.
于 2013-02-27T15:20:25.370 回答
0

对于索引选择,您可以按照

所以,SHOW TABLE STATUS [{FROM | IN} db_name] [LIKE 'pattern' | WHERE expr]

于 2012-06-03T09:29:23.907 回答