What are the differences between MyISAM and Inno DB types in MySql?
|
The main difference is that InnoDB supports transactions while MyISAM does not. There are numerous other differences, however the common one's i am aware of are:
I'm sure a google search or the MySQL site will bring up numerous other differences in more detail. |
|||||||||||
|
|
MyISAM supports (non-standard-SQL) fulltext indexing which InnoDB still does not. This is the only reason we ever use MyISAM today. |
|||
|
|
Features and Performance comparison:
In light of these differences, InnoDB and MyISAM have their unique advantages and disadvantages against each other. They each are more suitable in some scenarios than the other. Advantages of InnoDB
Disadvantages of InnoDB
Advantages of MyISAM
Disadvantages of MyISAM
The comparison is pretty straightforward. InnoDB is more suitable for data critical situations that require frequent inserts and updates. MyISAM, on the other hand, performs better with applications that don’t quite depend on the data integrity and mostly just select and display the data. Reference: Comparison InnoDB and MyISAM You can also check it out here for further details: MyISAM Or InnoDB MySQL engine? Hope this helps. |
|||||||
|
|
The most important difference between MyISAM and InnoDB is that InnoDB supports transactions and foreign keys. If you need foreign keys and related functionality (for example automatically cascading deletes), you will need to use InnoDB. InnoDB is slower than MyISAM for most uses, but can perform faster in certain conditions due to a better locking mechanism; MyISAM locks the whole table for reading while inserts/updates are executing. InnoDB can do row-level locking, thus allowing multiple concurrent writes and read on the table. |
|||
|
|
|
You can have more information about MyISAM & InnoDB in MySQL Documentation: http://dev.mysql.com/doc/refman/5.1/en/myisam-storage-engine.html |
|||
|
|
|
MyISAM and InnoDB also store their data on disk differently. MyISAM uses a data file and an index file for each table, stored in a directory named after the database. InnoDB seems to lump everything together in a file called ibdata1. |
|||||
|
|
The major difference is that InnoDB supports transactions, whereas MyISAM doesn't. |
|||
|
|
|
Here is a description of differences between InnoDB and MyIsam: Differences between InnoDB and MyIsam Few differences:
|
|||
|
|
|
MyISAM is more convienient when it comes to backup, since it's rather simple to just lock all tables and copy the files directly in the filesystem. (mysqlhotcopy which is a perl-script is even part of mysql afaik) InnoDB is a little more complex and just copying the files won't do since they cannot be restored on another machine out-of-the-box. However, there are commercial software that offers InnoDB hotcopying. |
|||||
|
|
While transaction support is the major difference, table-level locking can be an issue if you have long-running SELECT queries mixed with UPDATE statements. |
|||
|
|
NFS supportUnlike MyISAM, InnoDB may have problems on NFS. From Configuring InnoDB (MySQL version 5.5)
|
|||
|
|