Import and Export MySQL Databases

How do I export and import a mySQL db using phpMyAdmin?

Open phpMyAdmin and select the database from where you want to export data and/or structure. Go to the tab with “Export”. Select the table(s) you want to save. Select the option you need: Data only or data and structure or structure only:

  • if you only want to update a table on another server, which has a table with the same structure, then you choose data only
  • if you want to create a new table on another server (for instance, if you have a development environment and you now want to put your application in production) then choose structure only
  • if you are moving a complete table, choose data and structure

Next, select “save as file” and hit the “Go” button.

You can now enter a file name and specify where the file needs to be saved. It’s recommended to choose a meaningful file name that includes the date. Like “shop_05_07_03.sql” This creates the dumpfile. If you open it in notepad or any other text editor, it looks something like:

 

 phpMyAdmin mySQL-Dump
 version 2.4.0
 http://www.phpmyadmin.net/ (download page)

 Host: thehostname would be here
 Generation Time: Apr 04, 2004 at 02:39 PM
 Server version: 4.0.13
 PHP Version: 4.2.3
 Database : `db-name would be here`
 --------------------------------------------------------

 Table structure for table `test`

 CREATE TABLE test (
 siteID int(6) NOT NULL auto_increment,
 uname tinytext NOT NULL,
 upwd tinytext NOT NULL,
 nick tinytext NOT NULL,
 sitename text NOT NULL,
 regdate date NOT NULL default '9999-01-01',
 numtrial int(7) unsigned NOT NULL default '0',
 PRIMARY KEY (siteID)
 ) TYPE=MyISAM COMMENT='Table with userinfo';

 Dumping data for table `useradmin`

 INSERT INTO test VALUES (1, 'mytest', 'testt', 'myteste', 'www.mysite.com/site/test.html',
 '0000-00-00', 0);

This is the dump file for table ‘test’ that contains one record. As you can see, it’s just a series of SQL statements to recreate the table and insert all records. If necessary, can can upload this file to a server or move it to another PC (on a disk or whatever)

Open phpMyAdmin. Select the database you want to import the table(s) in. Go to the SQL tab.

Look at the bottom for “Or location of the textfile” and browse to the dumpfile. Doubleclick on it so that the fileadress appears in the textbox. Then hit the “Go” button.

All SQL-statement will be executed and you will get a notification after the file is processed.

Originally posted on May 6, 2014 @ 9:28 am

Leave a comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.