Can you please enable slow query logging (>1sec, for example) and post explain here (or send it to [email protected])?
If it's delete query (most likely), you can do it in transaction and roll it back:
If it's delete query (most likely), you can do it in transaction and roll it back:
Code Select
BEGIN;
EXPLAIN ANALYZE DELETE FROM idata_...;
ROLLBACK;