Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the best way to duplicate a mysql db into another without using mysqldump? With content and without content.

I am currently using mysql 4.0

UPDATE: Without local access to the server.

share|improve this question
6  
What's wrong with mysqldump? – Michael Mior Jun 29 '11 at 21:06
9  
Make sure you don't do this: CREATE TABLE t2 SELECT * FROM t1; as you'll lose your index information, any special stuff like auto_increment etc.. many google's for this copy table sort of thing will lead you to doing this and it'll have un-desired results. – John Hunt Sep 25 '11 at 23:01
2  
Most of the answers below recreate mysqldump, which is sure to break in some cases... – The Doctor What Nov 3 '11 at 4:24
4  
@MichaelMior mysqldump is fine for small databases but a recent dump of a highly indexed database will take me over 40 hours to recover from a dump. That is why MySQL enterprise has an enterprise backup, with a price tag of $5k. PS: I will supply an answer that keeps the referential integrity by letting us use InnoDB and perform fast backups and recovery. – Quaternion Nov 15 '11 at 22:46
4  
An off topic question gets 92 upvotes and 37 favorites. Thumbs up for such off topic question. Outdated guidelines. – pal4life Feb 20 at 22:33
show 8 more comments

closed as off topic by Will Jul 3 '12 at 14:27

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

4 Answers

I can see you said you didn't want to use mysqldump, but I reached this page while looking for a similar solution and others might find it as well. With that in mind, here is a simple way to duplicate a database from the command line of a windows server:

  1. Create the target database using MySQLAdmin or your preferred method. In this example, db2 is the target database, where the source database db1 will be copied.
  2. Execute the following statement on a command line:

mysqldump -h [server] -u [user] -p[password] db1 | mysql -h [server] -u [user] -p[password] db2

Note: There is NO space between -p and [password]

share|improve this answer
2  
FYI - this also works for *NIX!! – daniel0mullins Feb 13 '12 at 15:40
11  
Great reasoning for posting sir. You are 100% correct that someone else will wind up here searching for something similar, but not quite the same. – Tim Mar 1 '12 at 14:38
1  
thanks, this is actually what i was looking for :-) – esther h Apr 19 '12 at 12:53
11  
The case against mysqldump is that there has to be a faster way then serializing the data into queries, transmitting the queries outside of the process and through the tty back into the exact same process, reparsing the queries, and executing them as statements. That sounds horribly inefficient and unnecessary. We're not talking about crossing between MySQL masters or changing storage engines. It's shocking there is no efficient intraprocess binary transfer. – Toddius Zho Aug 23 '12 at 20:16
4  
If you don't want to save the password plaintext in your terminals history, you need to split the command: mysqldump -h [server] -u [user] -p db1 > db1, mysql -h [server] -u [user] -p db2 < db1 Otherwise the password prompt messes it up, at least for me when using putty. – kapep Oct 22 '12 at 9:56
show 4 more comments

You can duplicate a table without data by running:

CREATE TABLE x LIKE y;

(See the MySQL CREATE TABLE Docs)

You could write a script that takes the output from SHOW TABLES from one database and copies the schema to another. You should be able to reference schema+table names like:

CREATE TABLE x LIKE other_db.y;

As far as the data goes, you can also do it in MySQL, but it's not necessarily fast. After you've created the references, you can run the following to copy the data:

INSERT INTO x SELECT * FROM other_db.y;

If you're using MyISAM, you're better off to copy the table files; it'll be much faster. You should be able to do the same if you're using INNODB with per table table spaces.

If you do end up doing an INSERT INTO SELECT, be sure to temporarily turn off indexes with ALTER TABLE x DISABLE KEYS!

EDIT Maatkit also has some scripts that may be helpful for syncing data. It may not be faster, but you could probably run their syncing scripts on live data without much locking.

share|improve this answer
1  
is this work for duplicate table? since i see the command is CREATE TABLE – GusDeCooL Jun 27 '11 at 12:13
You can do CREATE TABLE ... SELECT. – eggyal Sep 6 '12 at 6:10

If you are using Linux, you can use this bash script: (it perhaps needs some additional code cleaning but it works ... and it's much faster then mysqldump|mysql)

#!/bin/bash

DBUSER=user
DBPASSWORD=pwd
DBSNAME=sourceDb
DBNAME=destinationDb
DBSERVER=db.example.com

fCreateTable=""
fInsertData=""
echo "Copying database ... (may take a while ...)"
DBCONN="-h ${DBSERVER} -u ${DBUSER} --password=${DBPASSWORD}"
echo "DROP DATABASE IF EXISTS ${DBNAME}" | mysql ${DBCONN}
echo "CREATE DATABASE ${DBNAME}" | mysql ${DBCONN}
for TABLE in `echo "SHOW TABLES" | mysql $DBCONN $DBSNAME | tail -n +2`; do
        createTable=`echo "SHOW CREATE TABLE ${TABLE}"|mysql -B -r $DBCONN $DBSNAME|tail -n +2|cut -f 2-`
        fCreateTable="${fCreateTable} ; ${createTable}"
        insertData="INSERT INTO ${DBNAME}.${TABLE} SELECT * FROM ${DBSNAME}.${TABLE}"
        fInsertData="${fInsertData} ; ${insertData}"
done;
echo "$fCreateTable ; $fInsertData" | mysql $DBCONN $DBNAME
share|improve this answer
1  
If you're using the script above with InnoDB tables and have foreign keys, change the last line to the following: echo "set foreign_key_checks = 0; $fCreateTable ; $fInsertData ; set foreign_key_checks = 1;" | mysql $DBCONN $DBNAME – pegli Jun 14 '10 at 18:43
Does this also copy constraint data and other properties of tables? – Lucas Moeskops Apr 8 '11 at 10:54
1  
It seems so, because he uses a "SHOW CREATE TABLE" statement which generates a CREATE TABLE with all properties of the original. – Danita May 6 '11 at 15:34
Is it me or it doesn't work? It created just a few tables and throw this: Copying database (...) ERROR 1064 (42000) at line 1: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-modelowanie-copy' at line 1 ERROR 1064 (42000) at line 1: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-modelowanie-copy' at line 1 – zirael Oct 14 '11 at 10:35
ERROR 1064 (42000) at line 1: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'utf8_general_ci' at line 1 – zirael Oct 14 '11 at 10:41
show 3 more comments
function cloneTable($table,$newTable){
global $admin;
$db_check = @mysql_select_db ( $table );
$getTables  =   $admin->query("SHOW TABLES");   
$tables =   array();
while($row = mysql_fetch_row($getTables)){
    $tables[]   =   $row[0];
    }
$createTable    =   mysql_query("CREATE DATABASE `$newTable` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;") or die(mysql_error());
foreach($tables as $cTable){
    $db_check   =   @mysql_select_db ( $newTable );
    $create     =   $admin->query("CREATE TABLE $cTable LIKE ".$table.".".$cTable);
    if(!$create) {
        $error  =   true;
        }
    $insert     =   $admin->query("INSERT INTO $cTable SELECT * FROM ".$table.".".$cTable);
    }
return !isset($error) ? true : false;
}

// usage $clone = cloneTable('dbname','newdbname'); // first: toCopy, second: new database

share|improve this answer

protected by casperOne Feb 6 '12 at 19:13

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.