Skip to content

Instantly share code, notes, and snippets.

@morad7
Created October 17, 2017 11:07
Show Gist options
  • Save morad7/70299266024edcc2150d9b4ed31c9e4a to your computer and use it in GitHub Desktop.
Save morad7/70299266024edcc2150d9b4ed31c9e4a to your computer and use it in GitHub Desktop.
Turnicate big drupal database
SELECT TABLE_NAME, table_rows, data_length, index_length,
round(((data_length + index_length) / 1024 / 1024),2) "Size in MB"
FROM information_schema.TABLES WHERE table_schema = "fpkdb1"
ORDER BY (data_length + index_length) DESC;
TRUNCATE TABLE table_name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment