ISAM, HEAP and MyISAM. InnoDB, or BDB, MyISAM. MyISAM. This
behaviour is convenient when you want to copy tables between MySQL servers
that support different table types. ALTER
TABLE statement.ISAM table type will disappear in
MySQL version 5.0. MyISAM is a better implementation of
the same thing. ISAM table to a MyISAM :
mysql> ALTER TABLE tbl_name TYPE = MYISAM;ISAM tables with the isamchk
utility. myisamchk to repair or optimise tables,
you must always ensure that the mysqld
server is not using the table. HEAP tables use
hashed indexes and are stored in memory. This makes them
very fast, but if MySQL crashes you will lose all data
stored in them. HEAP is very useful for
temporary tables! ACID
compliant) storage engine with commit, rollback, and crash
recovery capabilities. SELECTs.Advantages of not transaction-safe tables (NTST):