在標準MySQL 5.6上查詢沒有使用過的索引的SQL

壹頁書發表於2015-01-15
select distinct
    mysql.innodb_index_stats.table_name,
    mysql.innodb_index_stats.index_name
from
    mysql.innodb_index_stats
where
    concat(mysql.innodb_index_stats.index_name,
            mysql.innodb_index_stats.table_name) not in (select 
            concat(information_schema.statistics.index_name,
                        information_schema.statistics.table_name)
        from
            information_schema.statistics)
        and mysql.innodb_index_stats.index_name <> 'GEN_CLUST_INDEX'; 



參考:
http://www.percona.com/blog/2012/06/30/find-unused-indexes/

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29254281/viewspace-1403275/,如需轉載,請註明出處,否則將追究法律責任。

相關文章