Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. SELECT table_schema "Database Name",
  2. Round(Sum(data_length + index_length) / 1024 / 1024, 1) "Size (MB)"
  3. FROM information_schema.tables
  4. GROUP BY table_schema;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement