User Tools

Site Tools


mysql_engines

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
mysql_engines [2017/02/24 07:34] luke7858mysql_engines [2024/05/23 07:26] (current) – external edit 127.0.0.1
Line 1: Line 1:
-=== Total number of tables/engines ===+=== Find the Total number of tables/engines (All Databases) ===
 <sxh bash> <sxh bash>
 select engine,count(*),sum(index_length+data_length)/1024/1024 "Table Engine Size in MB" from information_schema.tables group by engine; select engine,count(*),sum(index_length+data_length)/1024/1024 "Table Engine Size in MB" from information_schema.tables group by engine;
 </sxh> </sxh>
-=== Engine for a specific table === +\\ 
-Change database_name and table_name to your desired values +\\ 
 +=== Find the Engines for a specific db === 
 +Replace **__magento__** with your db name 
 +<sxh bash> 
 +select engine,count(*),sum(index_length+data_length)/1024/1024 "Table Engine Size in MB" from information_schema.tables where table_schema = 'magento' group by engine; 
 +</sxh> 
 +\\ 
 +\\ 
 +=== Find Engines for a specific db (Either InnoDB or MyISAM) === 
 +Replace **__magento__** with your db name and **InnoDB** with your desired engine 
 +<sxh bash> 
 +select engine,count(*),sum(index_length+data_length)/1024/1024 "Table Engine Size in MB" from information_schema.tables where table_schema = 'magento' and engine = 'InnoDB' group by engine; 
 +</sxh> 
 +\\ 
 +=== Find Engine for a Specific Table (Specific Database) === 
 +Repalce **__database_name__** and **__table_name__** to your desired values 
 <sxh bash> <sxh bash>
 select engine, table_name from information_schema.tables where table_schema = 'database_name' and table_name = 'table_name'; select engine, table_name from information_schema.tables where table_schema = 'database_name' and table_name = 'table_name';
 +</sxh>
 +\\
 +\\
 +=== Find Engine for a range of tables ===
 +Replace **__magento__** and **__%xml%__**
 +<sxh bash>
 +select engine, table_name from information_schema.tables where table_schema = 'magento' and table_name like '%xml%';
 +</sxh>
 +\\
 +=== Find a Range of Tables with a Specific Engine ===
 +<sxh bash>
 +select engine, table_name from information_schema.tables where table_schema = 'magento' and table_name like '%xml%' and engine = 'InnoDB';
 </sxh> </sxh>
mysql_engines.1487921666.txt.gz · Last modified: 2024/05/23 07:26 (external edit)

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki