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, 2281🔥, 0💬
Popular Posts:
How To Get a List of All Tables with "sys.tables" View in SQL Server? If you want to see the table y...
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...
How To Convert a Unicode Strings to Non-Unicode Strings in SQL Server Transact-SQL? Since Unicode ch...
How To Change the Password for Your Own User Account in MySQL? If you want to change the password of...
What are DDL (Data Definition Language) statements for tables in SQL Server? DDL (Data Definition La...