MySQL Forums
Forum List  »  Newbie

Re: Importing 26 GB dumpfile
Posted by: Peter Brawley
Date: May 10, 2016 07:40PM

Mebbe simpler to open another instance of the mysql client and run this query every hour or so to monitor progress...

select table_schema, count( engine) as tables, sum(table_rows) as rows
from information_schema.tables
where engine is not null
group by table_schema;

Options: ReplyQuote


Subject
Written By
Posted
Re: Importing 26 GB dumpfile
May 10, 2016 07:40PM


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.