Rechercher dans le manuel MySQL
B.4.6.2 TEMPORARY Table Problems
Temporary tables created with
CREATE TEMPORARY
TABLE
have the following limitations:
TEMPORARY
tables are supported only by theInnoDB
,MEMORY
,MyISAM
, andMERGE
storage engines.Temporary tables are not supported for NDB Cluster.
The
SHOW TABLES
statement does not listTEMPORARY
tables.To rename
TEMPORARY
tables,RENAME TABLE
does not work. UseALTER TABLE
instead:You cannot refer to a
TEMPORARY
table more than once in the same query. For example, the following does not work:The statement produces this error:
ERROR 1137: Can't reopen table: 'temp_table'
You can work around this issue if your query permits use of a common table expression (CTE) rather than a
TEMPORARY
table. For example, this fails with the Can't reopen table error:To avoid the error, use a
WITH
clause that defines a CTE, rather than theTEMPORARY
table:The Can't reopen table error also occurs if you refer to a temporary table multiple times in a stored function under different aliases, even if the references occur in different statements within the function. It may occur for temporary tables created outside stored functions and referred to across multiple calling and callee functions.
If a
TEMPORARY
is created with the same name as an existing non-TEMPORARY
table, the non-TEMPORARY
table is hidden until theTEMPORARY
table is dropped, even if the tables use different storage engines.There are known issues in using temporary tables with replication. See Section 17.4.1.30, “Replication and Temporary Tables”, for more information.
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-temporary-table-problems.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.