Rechercher dans le manuel MySQL
23.3.5 Obtaining Information About Partitions
This section discusses obtaining information about existing partitions, which can be done in a number of ways. Methods of obtaining such information include the following:
Using the
SHOW CREATE TABLE
statement to view the partitioning clauses used in creating a partitioned table.Using the
SHOW TABLE STATUS
statement to determine whether a table is partitioned.Querying the
INFORMATION_SCHEMA.PARTITIONS
table.Using the statement
EXPLAIN SELECT
to see which partitions are used by a givenSELECT
.
From MySQL 8.0.16, when insertions, deletions, or updates are
made to partitioned tables, the binary log records information
about the partition and (if any) the subpartition in which the
row event took place. A new row event is created for a
modification that takes place in a different partition or
subpartition, even if the table involved is the same. So if a
transaction involves three partitions or subpartitions, three
row events are generated. For an update event, the partition
information is recorded for both the “before” image
and the “after” image. The partition information is
displayed if you specify the -v
or
--verbose
option when viewing the binary log
using mysqlbinlog. Partition information is
only recorded when row-based logging is in use
(binlog_format=ROW
).
As discussed elsewhere in this chapter,
SHOW CREATE TABLE
includes in its
output the PARTITION BY
clause used to create
a partitioned table. For example:
- *************************** 1. row ***************************
- Table: trb3
- /*!50100 PARTITION BY RANGE (YEAR(purchased))
- (PARTITION p0 VALUES LESS THAN (1990) ENGINE = InnoDB,
- PARTITION p1 VALUES LESS THAN (1995) ENGINE = InnoDB,
- PARTITION p2 VALUES LESS THAN (2000) ENGINE = InnoDB,
- PARTITION p3 VALUES LESS THAN (2005) ENGINE = InnoDB) */
The output from SHOW TABLE STATUS
for partitioned tables is the same as that for nonpartitioned
tables, except that the Create_options
column
contains the string partitioned
. The
Engine
column contains the name of the
storage engine used by all partitions of the table. (See
Section 13.7.6.36, “SHOW TABLE STATUS Syntax”, for more information about
this statement.)
You can also obtain information about partitions from
INFORMATION_SCHEMA
, which contains a
PARTITIONS
table. See
Section 25.17, “The INFORMATION_SCHEMA PARTITIONS Table”.
It is possible to determine which partitions of a partitioned
table are involved in a given
SELECT
query using
EXPLAIN
. The
partitions
column in the
EXPLAIN
output lists the
partitions from which records would be matched by the query.
Suppose that a table trb1
is created and
populated as follows:
- (
- );
- (1, 'desk organiser', '2003-10-15'),
- (2, 'CD player', '1993-11-05'),
- (3, 'TV set', '1996-03-10'),
- (4, 'bookcase', '1982-01-10'),
- (5, 'exercise bike', '2004-05-09'),
- (6, 'sofa', '1987-06-05'),
- (7, 'popcorn maker', '2001-11-22'),
- (8, 'aquarium', '1992-08-04'),
- (9, 'study desk', '1984-09-16'),
- (10, 'lava lamp', '1998-12-25');
You can see which partitions are used in a query such as
SELECT * FROM trb1;
, as shown here:
In this case, all four partitions are searched. However, when a limiting condition making use of the partitioning key is added to the query, you can see that only those partitions containing matching values are scanned, as shown here:
EXPLAIN
also provides
information about keys used and possible keys:
If EXPLAIN
is used to examine a
query against a nonpartitioned table, no error is produced, but
the value of the partitions
column is always
NULL
.
The rows
column of
EXPLAIN
output displays the total
number of rows in the table.
See also Section 13.8.2, “EXPLAIN Syntax”.
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 26/06/2006 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/mysql-rf-partitioning-info.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.