Rechercher dans le manuel MySQL
15.23 InnoDB Restrictions and Limitations
This section describes restrictions and limitations of the
InnoDB
storage engine.
You cannot create a table with a column name that matches the name of an internal
InnoDB
column (includingDB_ROW_ID
,DB_TRX_ID
, andDB_ROLL_PTR
. This restriction applies to use of the names in any lettercase.SHOW TABLE STATUS
does not provide accurate statistics forInnoDB
tables except for the physical size reserved by the table. The row count is only a rough estimate used in SQL optimization.InnoDB
does not keep an internal count of rows in a table because concurrent transactions might “see” different numbers of rows at the same time. Consequently,SELECT COUNT(*)
statements only count rows visible to the current transaction.For information about how
InnoDB
processesSELECT COUNT(*)
statements, refer to theCOUNT()
description in Section 12.20.1, “Aggregate (GROUP BY) Function Descriptions”.ROW_FORMAT=COMPRESSED
is unsupported for page sizes greater than 16KB.A MySQL instance using a particular
InnoDB
page size (innodb_page_size
) cannot use data files or log files from an instance that uses a different page size.For limitations associated with importing tables using the Transportable Tablespaces feature, see Table Import Limitations.
For limitations associated with online DDL, see Section 15.12.6, “Online DDL Limitations”.
For limitations associated with general tablespaces, see General Tablespace Limitations.
For limitations associated with data-at-rest encryption, see Encryption Limitations.
Traduction non disponible
Le manuel MySQL n'est pas encore traduit en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Document créé le 26/06/2006, dernière modification le 26/10/2018
Source du document imprimé : https://www.gaudry.be/mysql-rf-innodb-restrictions-limitations.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.