mysql_mysqldump
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
mysql_mysqldump [2015/10/27 16:44] – luke7858 | mysql_mysqldump [2024/05/23 07:26] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | === Dumping and Importing database === | + | ~~NOCACHE~~ |
- | To take a mysql dump you should not be logged into mysql, you will just need to be in the terminal. Use the following command to export the db to the directory you are currently in: | + | ====== |
- | \\ | + | {{tabembed>[[mysql_mysqldump_intro|Intro, [[mysql_mysqldump_database|Database Import/Export, [[mysql_mysqldump_table|Table Import/Export}} |
- | === Viewing databases outside of mysql === | + | |
- | You can view your mysql databases without logging into mysql with the following command: | + | |
- | + | ||
- | <sxh bash> | + | |
- | \\ | + | |
- | === Database Engine | + | |
- | Check the db engines before you dump. This will allow you to find the most efficient way of dumping the tables | + | |
- | \\ | + | |
- | Replace " | + | |
- | <sxh bash> | + | |
- | mysql -e ' | + | |
- | </ | + | |
- | E.g Output: | + | |
- | <sxh bash> | + | |
- | +------------------------+--------+ | + | |
- | | TABLE_NAME | + | |
- | +------------------------+--------+ | + | |
- | | wp_commentmeta | + | |
- | | wp_comments | + | |
- | | wp_links | + | |
- | | wp_options | + | |
- | | wp_popularpostsdata | + | |
- | | wp_popularpostssummary | InnoDB | | + | |
- | | wp_postmeta | + | |
- | | wp_posts | + | |
- | | wp_term_relationships | + | |
- | | wp_term_taxonomy | + | |
- | | wp_terms | + | |
- | | wp_usermeta | + | |
- | | wp_users | + | |
- | +------------------------+--------+ | + | |
- | </sxh> | + | |
- | \\ | + | |
- | \\ | + | |
- | You will need to dump the db based on the storage engine: | + | |
- | === INNODB === | + | |
- | source: http:// | + | |
- | <sxh bash> | + | |
- | mysqldump -u user -p --single-transaction mydatabase > / | + | |
- | </ | + | |
- | + | ||
- | === myISAM === | + | |
- | source: http:// | + | |
- | <sxh bash> | + | |
- | mysqldump -u user -p --lock-tables mydatabase > / | + | |
- | </ | + | |
- | + | ||
- | === HYBRID === | + | |
- | --lock-all-tables will provide a consistent backup for hybrid databases | + | |
- | \\ | + | |
- | <sxh bash> | + | |
- | mysqldump -u user -p --lock-tables mydatabase > / | + | |
- | </ | + | |
- | \\ | + | |
- | === Basic Dump === | + | |
- | You can then perform a dump with: | + | |
- | + | ||
- | + | ||
- | <sxh bash> | + | |
- | You can also use the following to add date to the mysql dump: | + | |
- | <sxh bash> | + | |
- | == Dumping with progress report == | + | |
- | <sxh bash> | + | |
- | \\ | + | |
- | \\ | + | |
- | === Importing a database === | + | |
- | Once you have taken the dump you can then import the db using the following commands. | + | |
- | \\ | + | |
- | If you haven’t already prepared a blank database then you will need this command first: | + | |
- | + | ||
- | <sxh bash> | + | |
- | + | ||
- | + | ||
- | \\ | + | |
- | Once you have created the db you can import with: | + | |
- | + | ||
- | <sxh bash> | + |
mysql_mysqldump.1445964296.txt.gz · Last modified: 2024/05/23 07:26 (external edit)