Skip to content

Instantly share code, notes, and snippets.

@liuxd
Last active January 19, 2022 03:56
Show Gist options
  • Save liuxd/7a6d1d75be2f7358cc533e6200285f56 to your computer and use it in GitHub Desktop.
Save liuxd/7a6d1d75be2f7358cc533e6200285f56 to your computer and use it in GitHub Desktop.
[Check MySQL DB size] #TaxTraders
use information_schema;
select ROUND(SUM(data_length + index_length) / 1024 / 1024, 1) "DB size in MB" from tables;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment