Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Where Table Data Is Stored by the MyISAM Storage Engine
Where Table Data Is Stored by the MyISAM Storage Engine? - MySQL FAQs - Storage Engines: MyISAM, InnoDB and BDB
✍: FYIcenter.com
By default, MySQL provides \mysql\data directory for all storage engines to store table data. Under \mysql\data directory, each database will have its own subdirectory to store table data.
If a new table is created with the MyISAM storage engine, several files will be created. For example, the new table "fyi_isam" created in the previous tutorial exercise will result the following files:
>cd \mysql\data\fyi
>dir
8,620 fyi_isam.frm
0 fyi_isam.MYD
1,024 fyi_isam.MYI
...
These files are:
2007-05-10, 5000👍, 0💬
Popular Posts:
What is the version information in XML? “version” tag shows which version of XML is used.
Do events have return type ? No, events do not have return type.
What is PMP(project management plan)? The project management plan is a document that describes the p...
What’s the difference between Unit testing, Assembly testing and Regression testing? Unit testing is...
What is shadowing ? When two elements in a program have same name, one of them can hide and shadow t...