adspace
What is the difference between myisam dynamic and myisam static in mysql?
Answer Posted / Karan Srivastava
MyISAM Dynamic tables have a heap file that stores data, while MyISAM Static tables store data in both a .MYD (Data) file and a .MYI (Index) file. In MyISAM Dynamic tables, the .frm file contains information about table structure including column names and types. However, in MyISAM Static tables, this information is stored in separate .MYI files.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers