PDF (A4) - 43.4Mb
Man Pages (TGZ) - 297.3Kb
Man Pages (Zip) - 402.5Kb
Info (Gzip) - 4.3Mb
Info (Zip) - 4.3Mb
MySQL Globalization
MySQL Information Schema
MySQL Installation Guide
Security in MySQL
Starting and Stopping MySQL
MySQL and Linux/Unix
MySQL and Windows
MySQL and macOS
MySQL and Solaris
Building MySQL from Source
MySQL Restrictions and Limitations
MySQL Partitioning
MySQL Tutorial
MySQL Performance Schema
MySQL Replication
Using the MySQL Yum Repository
MySQL NDB Cluster 8.0
TheENGINES table provides information about storage engines. This is particularly useful for checking whether a storage engine is supported, or to see what the default engine is.
TheENGINES table has these columns:
ENGINEThe name of the storage engine.
SUPPORTThe server's level of support for the storage engine, as shown in the following table.
Value Meaning YESThe engine is supported and is active DEFAULTLike YES, plus this is the default engineNOThe engine is not supported DISABLEDThe engine is supported but has been disabled A value of
NOmeans that the server was compiled without support for the engine, so it cannot be enabled at runtime.A value of
DISABLEDoccurs either because the server was started with an option that disables the engine, or because not all options required to enable it were given. In the latter case, the error log should contain a reason indicating why the option is disabled. SeeSection 7.4.2, “The Error Log”.You might also see
DISABLEDfor a storage engine if the server was compiled to support it, but was started with a--skip-option. For theengine_nameNDBstorage engine,DISABLEDmeans the server was compiled with support for NDB Cluster, but was not started with the--ndbclusteroption.All MySQL servers support
MyISAMtables. It is not possible to disableMyISAM.COMMENTA brief description of the storage engine.
TRANSACTIONSWhether the storage engine supports transactions.
XAWhether the storage engine supports XA transactions.
SAVEPOINTSWhether the storage engine supports savepoints.
Notes
ENGINESis a nonstandardINFORMATION_SCHEMAtable.
Storage engine information is also available from theSHOW ENGINES statement. SeeSection 15.7.7.16, “SHOW ENGINES Statement”. The following statements are equivalent:
SELECT * FROM INFORMATION_SCHEMA.ENGINESSHOW ENGINESPDF (A4) - 43.4Mb
Man Pages (TGZ) - 297.3Kb
Man Pages (Zip) - 402.5Kb
Info (Gzip) - 4.3Mb
Info (Zip) - 4.3Mb
MySQL Globalization
MySQL Information Schema
MySQL Installation Guide
Security in MySQL
Starting and Stopping MySQL
MySQL and Linux/Unix
MySQL and Windows
MySQL and macOS
MySQL and Solaris
Building MySQL from Source
MySQL Restrictions and Limitations
MySQL Partitioning
MySQL Tutorial
MySQL Performance Schema
MySQL Replication
Using the MySQL Yum Repository
MySQL NDB Cluster 8.0