Re: MYSQL CRASHING FREQUENTLY
Posted by: Peter Brawley
Date: July 03, 2017 03:32PM

And let's see the result of ...

select
  engine,
  round(sum(data_length)/1024/1024/1024,1) 'data GB', 
  round(sum(index_length)/1024/1024/1024,1) 'Indexes GB' 
from information_schema.tables 
where engine is not null 
group by engine;

Options: ReplyQuote




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.