Three options for MySQL:
1) create the new database, bring down the server, move the files from one database folder to the other, and restart the server. note that this will only work if ALL of your tables are myisam.
2) create the new database, use CREATE TABLE ... LIKE statements, then use INSERT ... SELECT * FROM statements.
3) use mysqldump and reload with that file.
全站熱搜
留言列表