MySQL Forums
Forum List  »  MySQL Workbench

Re: MySQL WorkBench heavy disk usage on connect
Posted by: Alfredo Kengi Kojima
Date: January 23, 2014 04:38PM

How many tables and columns do you have in total in that schema?
You can find out with
select count(*) from information_schema.tables where table_schema = 'THE_SCHEMA';
select count(*) from information_schema.columns where table_schema = 'THE_SCHEMA';

Can you see if you can workaround the slowness by renaming the cache directory in the WB data dir (next to the log dir, find it in the Help menu)?

--
Alfredo Kojima
MySQL Developer Tools

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: MySQL WorkBench heavy disk usage on connect
693
January 23, 2014 04:38PM


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.