Skip to content

Instantly share code, notes, and snippets.

@AlexGx
Created March 31, 2017 10:47
Show Gist options
  • Save AlexGx/e216acd2f15c1031aeadab0a0c5319a8 to your computer and use it in GitHub Desktop.
Save AlexGx/e216acd2f15c1031aeadab0a0c5319a8 to your computer and use it in GitHub Desktop.
SELECT engine,
count(*) as TABLES,
concat(round(sum(table_rows)/1000000,2),'M') rows,
concat(round(sum(data_length)/(1024*1024*1024),2),'G') DATA,
concat(round(sum(index_length)/(1024*1024*1024),2),'G') idx,
concat(round(sum(data_length+index_length)/(1024*1024*1024),2),'G') total_size,
round(sum(index_length)/sum(data_length),2) idxfrac
FROM information_schema.TABLES
WHERE table_schema not in ('mysql', 'performance_schema', 'information_schema')
GROUP BY engine
ORDER BY sum(data_length+index_length) DESC LIMIT 10;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment