How to Dump a MySQL Database

When we talk about dump a MySQL database, we refer to a very simple operation: starting from the tabular representation of the data (and any references that bind them) we move on to export everything in a way faithful to the original in text format (with MySQL syntax), that is, we are making a complete backup of the database of our site to be reused in case of need.

What is a MySQL dump?

The dump operation of a database ( official documentation ) allows the user to save all the contents of the tables in a .SQL file , for example, which contains the queries that allow the content to be “rebuilt” elsewhere.

How to DUMP a MySQL database

  1. First of all, access PHPMyAdmin with your username and password: obviously these credentials must be the same ones associated with the database you want to backup;
  2. Click on Export: usually the default settings are fine to perform a dump correctly.
  3. Make sure you are exporting the whole database, and not just some tables of the same: to do this, just select the db you are interested in from the drop-down menu on the left.
  4. As export format select SQL, and then be sure to select â € œAdd AUTO_INCREMENTâ €, INSERT as export-type and all that I have reported in the screenshot below. To be on the safe side, you can still check all the boxes: I usually do this and things are fine too (tested on WordPress and Drupal, so far).
  5. There is little else to do, except make sure you have selected “SAVE as File” and file name template usually “__DB__”: clicking on GO, PHPMyAdmin will generate a file to download .SQL, which you will have to keep aside for when you restore.

In this screenshot the Export button is highlighted:dump a MySQL database

In this other, however, the ticks are highlighted that must be selected “at a minimum”, that is, in order to have a coherent and complete copy of the DB data.database

Restore the saved database

Restoring the database at a later time (you will need it in the most disparate or desperate cases: corrupt site or hacker to restore, installation of an old version of the site, migration of the site from one hosting to another and so on) passes through the import on the destination site in PHPMyAdmin of the .SQL dump file that you have downloaded: to act in this direction, the procedure is as follows.

  1. Initially, from the PHPMyAdmin screen, click on the table that says â € œSQLâ €;
  2. Select the backup you created previously (file with .SQL or dump extension);
  3. Click on â € œGOâ €: at the end, you should have a dump confirmation message, which will appear at the top of the next screen.

This procedure can be used on any hosting service with MySQL database included.

More Like This

How to Choose a Cloud Load Balancer

By 2022, experts predict an increase in the volume of global traffic by almost three times: presumably, the indicators will reach 4.8 zettabytes. As you...

Web Design Agencies Vs. CMS Providers, Which One to Choose?

Blogging and CMS platforms such as WordPress make it possible to create your own website and online shop without any programming knowledge. These often...

Top 10 Free Code Editors for Windows

Part of the programming process happens in the head, but you also need a good code editor to help translate all your ideas to...