Rechercher dans le manuel MySQL
16.4.1 Repairing and Checking CSV Tables
The CSV
storage engine supports the
CHECK TABLE
and
REPAIR TABLE
statements to verify
and, if possible, repair a damaged CSV
table.
When running the CHECK TABLE
statement, the CSV
file will be checked for
validity by looking for the correct field separators, escaped
fields (matching or missing quotation marks), the correct number
of fields compared to the table definition and the existence of a
corresponding CSV
metafile. The first invalid
row discovered will report an error. Checking a valid table
produces output like that shown below:
- +--------------+-------+----------+----------+
- +--------------+-------+----------+----------+
- +--------------+-------+----------+----------+
A check on a corrupted table returns a fault:
- +--------------+-------+----------+----------+
- +--------------+-------+----------+----------+
- +--------------+-------+----------+----------+
If the check fails, the table is marked as crashed (corrupt). Once
a table has been marked as corrupt, it is automatically repaired
when you next run CHECK TABLE
or
execute a SELECT
statement. The
corresponding corrupt status and new status will be displayed when
running CHECK TABLE
:
- +--------------+-------+----------+----------------------------+
- +--------------+-------+----------+----------------------------+
- +--------------+-------+----------+----------------------------+
To repair a table, use REPAIR
TABLE
, which copies as many valid rows from the existing
CSV
data as possible, and then replaces the
existing CSV
file with the recovered rows. Any
rows beyond the corrupted data are lost.
- +--------------+--------+----------+----------+
- +--------------+--------+----------+----------+
- +--------------+--------+----------+----------+
During repair, only the rows from the CSV
file up to the first damaged row are copied to the new table.
All other rows from the first damaged row to the end of the
table are removed, even valid rows.
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-se-csv-repair.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.