Rechercher dans le manuel MySQL
5.4.6 The DDL Log
The DDL log, or metadata log, records metadata operations
generated by data definition statements such as
DROP TABLE
and
ALTER TABLE
. MySQL uses this log to
recover from crashes occurring in the middle of a metadata
operation. When executing the statement DROP TABLE t1,
t2
, we need to ensure that both t1
and t2
are dropped, and that each table drop is
complete. Another example of this type of SQL statement is
ALTER
TABLE t3 DROP PARTITION p2
, where we must make certain
that the partition is completely dropped and that its definition
is removed from the list of partitions for table
t3
.
A record of metadata operations such as those just described are
written to the file ddl_log.log
, in the MySQL
data directory. This is a binary file; it is not intended to be
human-readable, and you should not attempt to modify its contents
in any way.
ddl_log.log
is not created until it is
actually needed for recording metadata statements, and is removed
following a successful start of mysqld. Thus,
it is possible for this file not to be present on a MySQL server
that is functioning in a completely normal manner.
Currently, ddl_log.log
can hold up to 1048573
entries, equivalent to 4 GB in size. Once this limit is exceeded,
you must rename or remove the file before it is possible to
execute any additional DDL statements. This is a known issue which
we are working to resolve (Bug #83708).
There are no user-configurable server options or variables associated with this file.
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-ddl-log.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.