Skip to content

Instantly share code, notes, and snippets.

@jheth
Created November 2, 2015 16:24
Show Gist options
  • Save jheth/df29dc47ef3491146581 to your computer and use it in GitHub Desktop.
Save jheth/df29dc47ef3491146581 to your computer and use it in GitHub Desktop.
MySQL Table Size
SELECT (data_length+index_length)/power(1024,3) tablesize_mb
FROM information_schema.tables
WHERE table_schema='ProposalAgent' and table_name='proposals';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment