InterviewSolution
Saved Bookmarks
| 1. |
What Are The Advantages Of Myisam Over Innodb? |
|
Answer» MyISAM follows a conservative approach to disk SPACE MANAGEMENT and stores each MyISAM table in a separate file, which can be further compresses, if required. On the other hand, InnoDB stores the tables in tablespace. Its further OPTIMIZATION is difficult. MyISAM follows a conservative approach to disk space management and stores each MyISAM table in a separate file, which can be further compresses, if required. On the other hand, InnoDB stores the tables in tablespace. Its further optimization is difficult. |
|