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, 4931👍, 0💬
Popular Posts:
What is the method to customize columns in DataGrid? Use the template column.
How To Compile a JUnit Test Class? Compiling a JUnit test class is like compiling any other Java cla...
How was XML handled during COM times? During COM it was done by using MSXML 4.0. So old languages li...
. How can a servlet refresh automatically if some new data has entered the database? You can use a c...
How To Remove the Top White Space of Your Web Page? - CSS Tutorials - Introduction To CSS Basics The...