|
Key
This line was removed.
This word was removed. This word was added.
This line was added.
|
Changes (2)
View Page History{page-title}
{excerpt}How Does MySQL Dump Work?
{excerpt}
A database dump contains the table structure and data in SQL text (ASCII) format. This can be done with any software that can issue SQL queries to the MySQL database to read the data and table structure. Its not uncommon for database administrators to take a periodic database dump (e.g. weekly) even when they might be using a more advanced backup method for more frequent backup. Because of the readable SQL text nature of the database dump they provide peace of mind to the administrator.
h5. How Does MySQL Dump Work?
h5. How Does MySQL Dump Work?
For each database and table the backup program (e.g. mysqldump) executes:
# [LOCK TABLE|http://dev.mysql.com/doc/refman/5.0/en/lock-tables.html] _table name_
# [LOCK TABLE|http://dev.mysql.com/doc/refman/5.0/en/lock-tables.html] _table name_
...