Link to home
Start Free TrialLog in
Avatar of Eduardo Fuerte
Eduardo FuerteFlag for Brazil

asked on

How to update debug engine at MySQL Server?

Hi Experts!

Do you know how to update debug engine at MySQL Server?

I'm receiving the message bellow when using a 3rd part debbuger (dbForge)

User generated image
Do you know what must be done to solve this issue?

Thanks in advance!
ASKER CERTIFIED SOLUTION
Avatar of clockwatcher
clockwatcher

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Eduardo Fuerte

ASKER

Hello !

After your suggestions I've cleaned all the debugger tables:

USE cr_debug;

SELECT * FROM breakpoints b;

SELECT * FROM callstack c;
DELETE FROM callstack;  

DELETE  FROM breakpoints;

SELECT * FROM debuggings d;

DELETE FROM cr_debug.debuggings;

SELECT * FROM watches w;
DELETE FROM watches;

SELECT * FROM dual d;

DELETE FROM dual;

Open in new window


And now everything is fine.