mysqldump匯入匯出表資料

luckyfriends發表於2016-01-11

僅僅匯出表結構

[root@db oracle]# mysqldump -u root -p -d dbname tab1 tab2 tab3 > transfertables.sql

Enter password:

 

透過檢視mysqldump –help,發現下面一條提示

  -d, --no-data       No row information.

 

匯出表結構加資料(去掉-d)

[root@db oracle]# mysqldump -u root -p dbname tab1 tab2 tab3 > transfertables.sql

Enter password:

 

將匯出的資料匯入另外一個資料庫

[root@db oracle]# mysql -u root -p newdbname < transfertables.sql

Enter password:

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/14710393/viewspace-1975046/,如需轉載,請註明出處,否則將追究法律責任。

相關文章