Created
November 25, 2015 13:37
-
-
Save pierophp/c2813d60883509fd688a to your computer and use it in GitHub Desktop.
mysql_index_size
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT database_name, table_name, index_name, stat_value*@@innodb_page_size | |
| FROM mysql.innodb_index_stats where stat_name='size' | |
| ORDER BY stat_value*@@innodb_page_size desc; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment