:: DEVELOPER ZONE
SHOW [STORAGE] ENGINES
SHOW ENGINES affiche les informations sur les moteurs de stockage du serveur.
C'est particulièrement utile pour connaître les moteurs supportés
par votre serveur, ou le moteur par défaut.
Cette commande a été ajoutée en MySQL 4.1.2.
SHOW TABLE TYPES est un synonyme, mais est abandonnée.
mysql> SHOW ENGINES\G *************************** 1. row *************************** Type: MyISAM Support: DEFAULT Comment: Default type from 3.23 with great performance *************************** 2. row *************************** Type: HEAP Support: YES Comment: Hash based, stored in memory, useful for temporary tables *************************** 3. row *************************** Type: MEMORY Support: YES Comment: Alias for HEAP *************************** 4. row *************************** Type: MERGE Support: YES Comment: Collection of identical MyISAM tables *************************** 5. row *************************** Type: MRG_MYISAM Support: YES Comment: Alias for MERGE *************************** 6. row *************************** Type: ISAM Support: NO Comment: Obsolete table type; Is replaced by MyISAM *************************** 7. row *************************** Type: MRG_ISAM Support: NO Comment: Obsolete table type; Is replaced by MRG_MYISAM *************************** 8. row *************************** Type: InnoDB Support: YES Comment: Supports transactions, row-level locking and foreign keys *************************** 9. row *************************** Type: INNOBASE Support: YES Comment: Alias for INNODB *************************** 10. row *************************** Type: BDB Support: YES Comment: Supports transactions and page-level locking *************************** 11. row *************************** Type: BERKELEYDB Support: YES Comment: Alias for BDB
La valeur Support indique que le moteur est supporté, et si le moteur
est le moteur par défaut. Par exemple, si le serveur est lancé avec l'option
--default-table-type=InnoDB alors la valeur de la colonne
Support de la ligne InnoDB contiendra DEFAULT.
© 1995-2005 MySQL AB. All rights reserved.
