Advertisement
Guest User

table size query

a guest
Nov 20th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.26 KB | None | 0 0
  1. SELECT TABLE_NAME, table_rows, data_length, index_length,
  2.     round(((data_length + index_length) / 1024 / 1024),2) 'Size in MB'
  3.     FROM information_schema.TABLES WHERE table_schema = "HERE YOUR DATABASE NAME"
  4.     ORDER BY (data_length + index_length) DESC;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement