Collections:
Data File for MyISAM Storage Engine in MySQL
Where Table Data Is Stored by the MyISAM Storage Engine in MySQL?
✍: 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:
⇒ Backup Tables by Copying MyISAM Files in MySQL
⇐ Tables Using MyISAM Storage Engine in MySQL
2017-09-01, 3505🔥, 0💬
Popular Posts:
How to detect the collation coercibility associated to a given character string using the COERCIBILI...
Where to find answers to frequently asked questions I am new to Oracle database. Here is a list of f...
How To Change the Name of a Database User in SQL Server? If you want to change the name of an existi...
How To Concatenate Two Character Strings Together in SQL Server Transact-SQL? Concatenating two char...
Where to find answers to frequently asked questions on Conditional Statements and Loops in SQL Serve...