How to convert InnoDB to MyISAM

Server Maintenance | Updated 2026

Converting tables between InnoDB and MyISAM storage engines is occasionally needed for specific performance or compatibility reasons. In most cases, InnoDB is the better choice for modern applications. Here is how to convert if needed.

01. Convert All Tables in a Database

Via SSH, generate and run the ALTER statements for all tables:

mysql -u dbuser -p -N -e "SELECT CONCAT('ALTER TABLE ',TABLE_NAME,' ENGINE=MyISAM;') FROM information_schema.TABLES WHERE TABLE_SCHEMA='dbname' AND ENGINE='InnoDB';" | mysql -u dbuser -p dbname
Think Before Converting

InnoDB is almost always better. It supports transactions, row-level locking, crash recovery, and foreign keys. MyISAM is only preferred for read-heavy tables that never get concurrent writes. WordPress, Joomla, and all modern CMS platforms are designed for InnoDB. Converting to MyISAM can cause data corruption under concurrent write loads.

For ibdata1 management and InnoDB disk space, see Clean/Shrink ibdata1. For database optimization, see Backup MySQL.

Database Help?

Open a Support Ticket

Quick Recap

  1. ALTER TABLE ... ENGINE = MyISAM to convert
  2. InnoDB is better for most applications
  3. MyISAM only for read-heavy, no-concurrent-write scenarios
  4. Back up before converting
  5. Do not convert WordPress tables to MyISAM

Database administration · Last updated March 2026 · Browse all Server Maintenance articles

  • 118 Users Found This Useful

Was this answer helpful?

Related Articles

FTP Failed: Service Check Unable to Connect to Port 21

Server Maintenance | Updated March 2026 When cPanel's service monitoring reports "FTP Failed:...

error: db3 error(-) from dbenv->failchk: DB_RUNRECOVERY: Fatal error, run database recovery

Server Maintenance | Updated 2026 The error db3 error(-30974) from dbenv->failchk:...

Killing cPanel Backups via Command Line / Shell

Server Maintenance | Updated 2026 When a cPanel backup process hangs or runs too long, it can...

VPS Time Not Correct with Time Server

Server Maintenance | Updated March 2026 When a VPS or dedicated server's system clock drifts...

Create CXS Quarantine Directory

Server Maintenance | Updated 2026 ConfigServer eXploit Scanner (CXS) quarantines suspicious...



Save 30% on web hosting - Use coupon code Hosting30