Collections:
Data File for InnoDB Storage Engine in MySQL
Where Table Data Is Stored by the InnoDB 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, InnoDB storage engine will create 3 files to store and manage all tables that use the InnoDB storage engine:
If a new table is created with the InnoDB storage engine, one format file named as databaseName\tableName.frm will be created. Table data and index data will be stored in "ibdata1". For example, the new table "fyi_inno" created in the previous tutorial exercise will result the following files:
>cd \mysql\data >dir fyi\fyi_inno.* 8,620 fyi_inno.frm >dir 10,485,760 ibdata1 5,242,880 ib_logfile0 5,242,880 ib_logfile1 ...
⇒ Tables Using BDB Storage Engine in MySQL
⇐ Tables Using InnoDB Storage Engine in MySQL
2017-08-13, 1922🔥, 0💬
Popular Posts:
How To Break Query Output into Pages in MySQL? If you have a query that returns hundreds of rows, an...
How To Divide Query Output into Multiple Groups with the GROUP BY Clause in SQL Server? Sometimes, y...
What Is an Oracle Instance in Oracle? Every running Oracle database is associated with an Oracle ins...
What Is a Parameter File in Oracle? A parameter file is a file that contains a list of initializatio...
How To Verify Your PHP Installation in MySQL? PHP provides two execution interfaces: Command Line In...