MySQL Forums
Forum List  »  Newbie

Re: How to get the database size and database free spce
Posted by: Peter Brawley
Date: June 18, 2010 01:53PM

SELECT 
  table_schema AS 'Db Name',
  Round( Sum( data_length + index_length ) / 1024 / 1024, 3) AS 'Db Size (MB)',
  Round( Sum( data_free ) / 1024 / 1024, 3 ) AS 'Free Space (MB)'
FROM information_schema.tables
GROUP BY table_schema ;

PB
http://www.artfulsoftware.com

Options: ReplyQuote


Subject
Written By
Posted
Re: How to get the database size and database free spce
June 18, 2010 01:53PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.