Created
October 22, 2019 09:53
-
-
Save agungdh/f71713d64cd047501a76f76c489e1b2f to your computer and use it in GitHub Desktop.
Cek ukuran database (KB)
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 | |
| ROUND(SUM(data_length + index_length) / 1024) AS 'size' | |
| FROM | |
| information_schema.tables | |
| WHERE | |
| table_schema = 'test' | |
| GROUP BY | |
| table_schema |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment