SHOW [STORAGE] ENGINES
SHOW ENGINES
显示有关服务器存储引擎的状态信息。这对于检查是否支持存储引擎或查看默认引擎是什么特别有用。
有关 MySQL 存储引擎的信息,请参阅 第 14 章,InnoDB 存储引擎和 第 15 章,替代存储引擎。
mysql> SHOW ENGINES\G
*************************** 1. row ***************************
Engine: FEDERATED
Support: NO
Comment: Federated MySQL storage engine
Transactions: NULL
XA: NULL
Savepoints: NULL
*************************** 2. row ***************************
Engine: MRG_MYISAM
Support: YES
Comment: Collection of identical MyISAM tables
Transactions: NO
XA: NO
Savepoints: NO
*************************** 3. row ***************************
Engine: MyISAM
Support: YES
Comment: MyISAM storage engine
Transactions: NO
XA: NO
Savepoints: NO
*************************** 4. row ***************************
Engine: BLACKHOLE
Support: YES
Comment: /dev/null storage engine (anything you write to it disappears)
Transactions: NO
XA: NO
Savepoints: NO
*************************** 5. row ***************************
Engine: CSV
Support: YES
Comment: CSV storage engine
Transactions: NO
XA: NO
Savepoints: NO
*************************** 6. row ***************************
Engine: MEMORY
Support: YES
Comment: Hash based, stored in memory, useful for temporary tables
Transactions: NO
XA: NO
Savepoints: NO
*************************** 7. row ***************************
Engine: ARCHIVE
Support: YES
Comment: Archive storage engine
Transactions: NO
XA: NO
Savepoints: NO
*************************** 8. row ***************************
Engine: InnoDB
Support: DEFAULT
Comment: Supports transactions, row-level locking, and foreign keys
Transactions: YES
XA: YES
Savepoints: YES
*************************** 9. row ***************************
Engine: PERFORMANCE_SCHEMA
Support: YES
Comment: Performance Schema
Transactions: NO
XA: NO
Savepoints: NO
SHOW ENGINES
根据使用的 MySQL 版本和其他因素
,输出可能会有所不同。
SHOW ENGINES
输出有以下列:
Engine
存储引擎的名称。
Support
服务器对存储引擎的支持程度,如下表所示。
价值 意义 YES
引擎受支持并处于活动状态 DEFAULT
喜欢 YES
,加上这是默认引擎NO
引擎不受支持 DISABLED
该引擎受支持但已被禁用 值
NO
表示服务器是在不支持引擎的情况下编译的,因此无法在运行时启用。出现值
DISABLED
是因为服务器启动时使用了禁用引擎的选项,或者因为未提供启用它所需的所有选项。在后一种情况下,错误日志应包含说明禁用该选项的原因。请参阅 第 5.4.2 节,“错误日志”。如果服务器被编译为支持它,但启动时有一个选项, 您可能还会看到
DISABLED
存储引擎 。对于存储引擎,意味着服务器编译时支持 NDB Cluster,但未使用该选项启动。--skip-
engine_name
NDB
DISABLED
--ndbcluster
所有 MySQL 服务器都支持
MyISAM
表。禁用是不可能的MyISAM
。Comment
存储引擎的简要说明。
Transactions
存储引擎是否支持事务。
XA
存储引擎是否支持 XA 事务。
Savepoints
存储引擎是否支持保存点。
表中还提供了存储引擎信息
INFORMATION_SCHEMA
ENGINES
。请参阅
第 21.3.7 节,“INFORMATION_SCHEMA ENGINES 表”。