Error synchronizing model in mysql workbench

0

I want to synchronize my model in mysql workbench and I get this error:

  

Fetching table list.       0 items from dbEnter OK Fetching view list.       0 items from dbEnter OK Fetching routine list. Operation failed: Table 'proc' is marked as crashed and should be repaired

    
asked by Pato Hernandez 20.06.2017 в 06:01
source

1 answer

0

Try to repair the table that gives you the failure, this you can do with

REPAIR TABLE proc;

Remember to make a backup copy of the table before repairing it, since the repair may cause data loss.

    
answered by 20.06.2017 в 13:01