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.
|
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. |
||||
| show 8 more comments |
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.
|
I can see you said you didn't want to use
Note: There is NO space between |
|||||||||||||||||||||
|
|
You can duplicate a table without data by running:
(See the MySQL CREATE TABLE Docs) You could write a script that takes the output from
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:
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 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. |
|||||||
|
|
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)
|
|||||||||||||||
|
// usage $clone = cloneTable('dbname','newdbname'); // first: toCopy, second: new database |
|||
|
|
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.
mysqldump? – Michael Mior Jun 29 '11 at 21:06CREATE 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