myisam 發布相對簡單,把庫下面所有檔案拷過去就好了。複製innodb的做法相對複雜,下面是我在innodb 上覆制資料庫的方法
[root@localhost data]# mysql -u root -p
enter password:
welcome to the mysql monitor. commands end with ; or \g.
your mysql connection id is 229915
server version: 5.0.77-log mysql community server (gpl)
type 'help;' or '\h' for help. type '\c' to clear the buffer.
mysql> create database hyd_zc_new;
query ok, 1 row affected (0.00 sec)
mysql> exit
bye[root@localhost data]# mysqldump hyd_fm_new -u root -p******x |mysql hyd_zc_new -u root -p******x
--如果不是非本機還可以加-h引數
[root@localhost data]# mysql -u root -p
enter password:
welcome to the mysql monitor. commands end with ; or \g.
your mysql connection id is 229930
server version: 5.0.77-log mysql community server (gpl)
type 'help;' or '\h' for help. type '\c' to clear the buffer.
mysql> show databases;
| database |
| information_schema |
| drug_ss |
| aneu2007_blog2007 |
| aneu2007_new |
| hyd_fm_new |
| hyd_gjt_new |
| hyd_new |
| hyd_zc_new |
打賞
MySQL快速複製資料庫的方法
某些時候,例如為了搭建乙個測試環境,或者轉殖乙個 需要複製乙個已存在的mysql資料庫。使用以下方法,可以非常簡單地實現。假設已經存在的資料庫名字叫db1,想要複製乙份,命名為newdb。步驟如下 1.首先建立新的資料庫newdb mysql u root ppassword mysql creat...
MySQL快速複製資料庫的方法
某些時候,例如為了搭建乙個測試環境,或者轉殖乙個 需要複製乙個已存在的mysql資料庫。使用以下方法,可以非常簡單地實現。假設已經存在的資料庫名字叫db1,想要複製乙份,命名為newdb。步驟如下 1.首先建立新的資料庫newdb mysql u root ppassword mysql creat...
MySQL快速複製資料庫的方法
某些時候,例如為了搭建乙個測試環境,或者轉殖乙個 需要複製乙個已存在的mysql 資料庫。使用以下方法,可以非常簡單地實現。假設已經存在的資料庫名字叫db1,想要複製乙份,命名為newdb。步驟如下 1.首先建立新的資料庫newdb mysql u root ppassword mysql crea...