Rechercher dans le manuel MySQL
15.14.8 Retrieving InnoDB Tablespace Metadata from INFORMATION_SCHEMA.FILES
The INFORMATION_SCHEMA.FILES
table
provides metadata about all InnoDB
tablespace
types including file-per-table
tablespaces,
general
tablespaces, the
system tablespace,
temporary table
tablespaces, and undo
tablespaces (if present).
This section provides InnoDB
-specific usage
examples. For more information about data provided by the
INFORMATION_SCHEMA.FILES
table, see
Section 25.11, “The INFORMATION_SCHEMA FILES Table”.
The INNODB_TABLESPACES
and
INNODB_DATAFILES
tables also
provide metadata about InnoDB
tablespaces,
but data is limited to file-per-table, general, and undo
tablespaces.
This query retrieves metadata about the InnoDB
system tablespace from fields of the
INFORMATION_SCHEMA.FILES
table that
are pertinent to InnoDB
tablespaces.
INFORMATION_SCHEMA.FILES
fields that
are not relevant to InnoDB
always return NULL,
and are excluded from the query.
- *************************** 1. row ***************************
- FILE_ID: 0
- FILE_NAME: ./ibdata1
- FILE_TYPE: TABLESPACE
- TABLESPACE_NAME: innodb_system
- FREE_EXTENTS: 0
- TOTAL_EXTENTS: 12
- EXTENT_SIZE: 1048576
- INITIAL_SIZE: 12582912
- MAXIMUM_SIZE: NULL
- AUTOEXTEND_SIZE: 67108864
- DATA_FREE: 4194304
- ENGINE: NORMAL
This query retrieves the FILE_ID
(equivalent to
the space ID) and the FILE_NAME
(which includes
path information) for InnoDB
file-per-table and
general tablespaces. File-per-table and general tablespaces have a
.ibd
file extension.
- +---------+---------------------------------------+
- | FILE_ID | FILE_NAME |
- +---------+---------------------------------------+
- | 2 | ./mysql/plugin.ibd |
- | 3 | ./mysql/servers.ibd |
- | 4 | ./mysql/help_topic.ibd |
- | 5 | ./mysql/help_category.ibd |
- | 6 | ./mysql/help_relation.ibd |
- | 7 | ./mysql/help_keyword.ibd |
- | 8 | ./mysql/time_zone_name.ibd |
- | 9 | ./mysql/time_zone.ibd |
- | 10 | ./mysql/time_zone_transition.ibd |
- | 11 | ./mysql/time_zone_transition_type.ibd |
- | 12 | ./mysql/time_zone_leap_second.ibd |
- | 13 | ./mysql/innodb_table_stats.ibd |
- | 14 | ./mysql/innodb_index_stats.ibd |
- | 15 | ./mysql/slave_relay_log_info.ibd |
- | 16 | ./mysql/slave_master_info.ibd |
- | 17 | ./mysql/slave_worker_info.ibd |
- | 18 | ./mysql/gtid_executed.ibd |
- | 19 | ./mysql/server_cost.ibd |
- | 20 | ./mysql/engine_cost.ibd |
- | 21 | ./sys/sys_config.ibd |
- | 23 | ./test/t1.ibd |
- +---------+---------------------------------------+
This query retrieves the FILE_ID
and
FILE_NAME
for the InnoDB
global temporary tablespace. Global temporary tablespace file
names are prefixed by ibtmp
.
- +---------+-----------+
- | FILE_ID | FILE_NAME |
- +---------+-----------+
- | 22 | ./ibtmp1 |
- +---------+-----------+
Similarly, InnoDB
undo tablespace file names
are prefixed by undo
. The following query
returns the FILE_ID
and
FILE_NAME
for InnoDB
undo
tablespaces.
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 26/06/2006, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/mysql-rf-innodb-information-schema-files-table.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.