I have a rather slow query (actually it is loading data from mysql.dump). Now I want to check how many lines are already loaded.
select count(*) from my_table;
As for data loading, my_table blocked, so I cannot execute this sql before loading the dump.
Cmd ID State User Host DB Time Query Query 191 update root localhost rehub 00:09 INSERT INTO `my_table` VALUES ... Query 189 Waiting for table root localhost rehub 06:25 select count(*) from my_table
So, is there a way to suspend request 191, execute request 189, and then resume request 191?
fl00r source share