Created
January 18, 2017 17:46
-
-
Save rpuglielli/ee6885db73e5aef797065337eb8213df to your computer and use it in GitHub Desktop.
Size of table
This file contains 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 nomeDaTabela, data_length / 1024 / 1024 "Tamanho da tabela - MB", index_length / 1024 / 1024 "Tamanho do indice - MB", engine | |
FROM information_schema.TABLES WHERE table_name like 'nomeDaTabela'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment