Rechercher dans le manuel MySQL
4.6.4.4 Other myisamchk Options
myisamchk supports the following options for actions other than table checks and repairs:
--analyze
,-a
Analyze the distribution of key values. This improves join performance by enabling the join optimizer to better choose the order in which to join the tables and which indexes it should use. To obtain information about the key distribution, use a myisamchk --description --verbose
tbl_name
command or theSHOW INDEX FROM
statement.tbl_name
--block-search=
,offset
-b
offset
Find the record that a block at the given offset belongs to.
--description
,-d
Print some descriptive information about the table. Specifying the
--verbose
option once or twice produces additional information. See Section 4.6.4.5, “Obtaining Table Information with myisamchk”.--set-auto-increment[=
,value
]-A[
value
]Force
AUTO_INCREMENT
numbering for new records to start at the given value (or higher, if there are existing records withAUTO_INCREMENT
values this large). Ifvalue
is not specified,AUTO_INCREMENT
numbers for new records begin with the largest value currently in the table, plus one.--sort-index
,-S
Sort the index tree blocks in high-low order. This optimizes seeks and makes table scans that use indexes faster.
--sort-records=
,N
-R
N
Sort records according to a particular index. This makes your data much more localized and may speed up range-based
SELECT
andORDER BY
operations that use this index. (The first time you use this option to sort a table, it may be very slow.) To determine a table's index numbers, useSHOW INDEX
, which displays a table's indexes in the same order that myisamchk sees them. Indexes are numbered beginning with 1.If keys are not packed (
PACK_KEYS=0
), they have the same length, so when myisamchk sorts and moves records, it just overwrites record offsets in the index. If keys are packed (PACK_KEYS=1
), myisamchk must unpack key blocks first, then re-create indexes and pack the key blocks again. (In this case, re-creating indexes is faster than updating offsets for each index.)
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-myisamchk-other-options.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.