innodb

  1. K

    Repair or Recover InnoDB Tables in MySQL: A Complete Guide

    Server crashing in the middle of a session will lead to inconsistent states. As opposed to repairing MYISAM tables in MySQL, repairing InnoDB isn’t that straightforward. There aren’t many dedicated tools available for repairing InnoDB. In this article, learn how to repair or repair InnoDB tables...
  2. K

    Steps to convert database tables from InnoDB to MyISAM

    If you want to convert your database tables to MyISAM then you can follow below steps.But for that it is must to have root access of your database. You have to first dumped your SQL file via mysqldump and for that we have to replace "ENGINE=INNODB" with "ENGINE=MyISAM". You can check below...
Top