Problems when repairing or doing any task in my database with phpmyadmin

vtr

Member
Well since that update to 2.0 will be more or less I have noticed that I get an error and I can not repair tables or optimize tables, I leave an error caption ..

The manipulator of the table does not allow support for ..

194803
 
A MySQL "repair table" query is not supported by Innodb table types. It works with MyISAM and Aria table types.

Innodb is better hardened against corruption, and the database engine attempts minor repairs automatically if you restart it. When this doesn't work, copying the table into another, deleting it and renaming the new table to the old table's name will usually work. Backup before you do this. If either of these methods fail, Innodb recovery mode needs to be set in your my.cnf file and the database software restarted.

See:
 
  • Like
Reactions: vtr
Top Bottom