Replies: 4 comments 2 replies
-
Hi Ladislav, thank you very much for your appreciation! Unfortunately I also have database with many tables and I will keep you updated! |
Beta Was this translation helpful? Give feedback.
-
Since some previously needed data are no longer I am testing the query: SELECT
TABLE_NAME,
TABLE_TYPE,
ENGINE,
DATA_LENGTH,
INDEX_LENGTH,
TABLE_COMMENT,
TABLE_COLLATION,
CREATE_TIME,
UPDATE_TIME
FROM information_schema.TABLES
WHERE TABLE_SCHEMA = 'schemaname' From my initial tests it seems to perform well and if I don't encounter any problems I will implement this change in the next release. |
Beta Was this translation helpful? Give feedback.
-
I tried the query on one of the larger databases and it is still
considerably slow. It must be because some of the columns are dynamic.
From your query they are DATA_LENGTH, INDEX_LENGTH, CREATE_TIME and
UPDATE_TIME. Without them, the query is super fast.
|
Beta Was this translation helpful? Give feedback.
-
I have the new version with improved tables loading and it's great 👍 |
Beta Was this translation helpful? Give feedback.
-
Hi Fabio,
first of all, I want to thank you 🙇
I have been looking for such a client for a long time and the ongoing development gives me hope that in time it will satisfy all my requirements 👍
But what really bothers me is the table listing in the left menu. Selecting a DB will trigger a
![SCR-20230201-dxk](https://user-images.githubusercontent.com/272130/215998308-91c2a616-8253-4ffb-8b87-4096f60738e6.png)
SHOW TABLE STATUS FROM...
query, which for large DBs (tens and hundreds of GB) can take minutes! One of "my" DBvo
has almost 20 GB and I have bigger ones.Would it be possible to use the
![SCR-20230201-dy8](https://user-images.githubusercontent.com/272130/215998372-78900a2f-ee94-4226-aeee-e6d0836eb281.png)
SHOW TABLES FROM...
query and get the rest of the information in the background?Beta Was this translation helpful? Give feedback.
All reactions