Collections:
Data File of BDB Storage Engine in MySQL
Where Table Data Is Stored by the BDB 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, the BDB storage engine will create one file for each table to store table data and index data.
If a new table is created with the BDB storage engine, one format file named as databaseName\tableName.frm will be created. Another file named as databaseName\tableName.db to store table data and index data. For example, the new table "fyi_bdb" created in the previous tutorial exercise will result the following files:
>cd \mysql\data
>dir fyi\fyi_bdb.*
49,152 fyi_bdb.db
8,620 fyi_bdb.frm
⇒ Tables Using CSV Storage Engine in MySQL
⇐ Starting mysqld to Support BDB Storage Engine in MySQL
2017-08-13, 2721🔥, 0💬
Popular Posts:
How to format a number of bytes in a human-readable unit using the FORMAT_BYTES() function? FORMAT_B...
What Is Oracle in Oracle? Oracle is a company. Oracle is also a database server, which manages data ...
How To Verify a User name with SQLCMD Tool in SQL Server? The quickest way to verify a user name in ...
How to calculate the storage size of a JSON (JavaScript Object Notation) value using the JSON_STORAG...
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...