Geen cache-versie.

Caching uitgeschakeld. Standaardinstelling voor deze pagina:ingeschakeld (code DEF204)
Als het scherm te langzaam is, kunt u de gebruikersmodus uitschakelen om de cacheversie te bekijken.

Rechercher dans le manuel MySQL

23.2.6 Subpartitioning

Subpartitioning—also known as composite partitioning—is the further division of each partition in a partitioned table. Consider the following CREATE TABLE statement:

  1. CREATE TABLE ts (id INT, purchased DATE)
  2.     PARTITION BY RANGE( YEAR(purchased) )
  3.     SUBPARTITION BY HASH( TO_DAYS(purchased) )
  4.     SUBPARTITIONS 2 (
  5.         PARTITION p0 VALUES LESS THAN (1990),
  6.         PARTITION p1 VALUES LESS THAN (2000),
  7.         PARTITION p2 VALUES LESS THAN MAXVALUE
  8.     );

Table ts has 3 RANGE partitions. Each of these partitions—p0, p1, and p2—is further divided into 2 subpartitions. In effect, the entire table is divided into 3 * 2 = 6 partitions. However, due to the action of the PARTITION BY RANGE clause, the first 2 of these store only those records with a value less than 1990 in the purchased column.

It is possible to subpartition tables that are partitioned by RANGE or LIST. Subpartitions may use either HASH or KEY partitioning. This is also known as composite partitioning.

Note

SUBPARTITION BY HASH and SUBPARTITION BY KEY generally follow the same syntax rules as PARTITION BY HASH and PARTITION BY KEY, respectively. An exception to this is that SUBPARTITION BY KEY (unlike PARTITION BY KEY) does not currently support a default column, so the column used for this purpose must be specified, even if the table has an explicit primary key. This is a known issue which we are working to address; see Issues with subpartitions, for more information and an example.

It is also possible to define subpartitions explicitly using SUBPARTITION clauses to specify options for individual subpartitions. For example, a more verbose fashion of creating the same table ts as shown in the previous example would be:

  1. CREATE TABLE ts (id INT, purchased DATE)
  2.     PARTITION BY RANGE( YEAR(purchased) )
  3.     SUBPARTITION BY HASH( TO_DAYS(purchased) ) (
  4.         PARTITION p0 VALUES LESS THAN (1990) (
  5.             SUBPARTITION s0,
  6.             SUBPARTITION s1
  7.         ),
  8.         PARTITION p1 VALUES LESS THAN (2000) (
  9.             SUBPARTITION s2,
  10.             SUBPARTITION s3
  11.         ),
  12.         PARTITION p2 VALUES LESS THAN MAXVALUE (
  13.             SUBPARTITION s4,
  14.             SUBPARTITION s5
  15.         )
  16.     );

Some syntactical items of note are listed here:

  • Each partition must have the same number of subpartitions.

  • If you explicitly define any subpartitions using SUBPARTITION on any partition of a partitioned table, you must define them all. In other words, the following statement will fail:

    1. CREATE TABLE ts (id INT, purchased DATE)
    2.     PARTITION BY RANGE( YEAR(purchased) )
    3.     SUBPARTITION BY HASH( TO_DAYS(purchased) ) (
    4.         PARTITION p0 VALUES LESS THAN (1990) (
    5.             SUBPARTITION s0,
    6.             SUBPARTITION s1
    7.         ),
    8.         PARTITION p1 VALUES LESS THAN (2000),
    9.         PARTITION p2 VALUES LESS THAN MAXVALUE (
    10.             SUBPARTITION s2,
    11.             SUBPARTITION s3
    12.         )
    13.     );

    This statement would still fail even if it used SUBPARTITIONS 2.

  • Each SUBPARTITION clause must include (at a minimum) a name for the subpartition. Otherwise, you may set any desired option for the subpartition or allow it to assume its default setting for that option.

  • Subpartition names must be unique across the entire table. For example, the following CREATE TABLE statement is valid:

    1. CREATE TABLE ts (id INT, purchased DATE)
    2.     PARTITION BY RANGE( YEAR(purchased) )
    3.     SUBPARTITION BY HASH( TO_DAYS(purchased) ) (
    4.         PARTITION p0 VALUES LESS THAN (1990) (
    5.             SUBPARTITION s0,
    6.             SUBPARTITION s1
    7.         ),
    8.         PARTITION p1 VALUES LESS THAN (2000) (
    9.             SUBPARTITION s2,
    10.             SUBPARTITION s3
    11.         ),
    12.         PARTITION p2 VALUES LESS THAN MAXVALUE (
    13.             SUBPARTITION s4,
    14.             SUBPARTITION s5
    15.         )
    16.     );

Zoek in de MySQL-handleiding

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-subpartitions.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

  1. Bekijk - html-document Taal van het document:en Manuel MySQL : https://dev.mysql.com/

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.

Inhoudsopgave Haut