1、導(dǎo)入數(shù)據(jù)庫
在命令行下輸入:
mysql -u username -p test < /home/data/test.sql
說明:username是數(shù)據(jù)庫用戶名,test為目標(biāo)數(shù)據(jù)庫,回車,輸入數(shù)據(jù)庫密碼,就進(jìn)行導(dǎo)入操作了!
2、導(dǎo)出數(shù)據(jù)庫 www.2cto.com
2.1、導(dǎo)出整個數(shù)據(jù)庫:
mysqldump -u username -p test > /home/data/test.sql
說明:username是數(shù)據(jù)庫用戶名,test源數(shù)據(jù)庫,回車,輸入數(shù)據(jù)庫密碼,就進(jìn)行導(dǎo)入操作了!目標(biāo)文件路徑為/home/data/
2.2、導(dǎo)出數(shù)據(jù)庫中某張表:
mysqldump -u username -p test documents > /home/data/test.sql
說明:導(dǎo)出數(shù)據(jù)庫test中的documents表到目標(biāo)目錄。