mysqldump --result-file引數

huzhichengforce發表於2015-03-31
使用mysqldump 備份時 有一個引數--result-file 官方解釋為Direct output to a given file 直接輸入到給定的檔案。
我們在備份時
mysql -uroot -p1qazxsw2 -S /var/lib/mysql/mysql.sock test >test.sql 可以重定向到test檔案下面
而--result-file 引數的意義就是代替上面的方法
開啟一個終端:1
[root@mysql ~]# mysqldump -uroot -p1qazxsw2 -S /var/lib/mysql/mysql.sock test --result-file=/data01/result.sql
Warning: Using a password on the command line interface can be insecure.
完成備份後
開啟一個終端2:目錄下面已經有了我們備份的檔案。
[root@mysql data01]# ll
total 793028
-rw-r--r-- 1 root root 802072615 Mar 28 10:31 huzhichengfull.sql
drwx------ 2 root root     16384 Feb  3 05:44 lost+found
-rw-r--r-- 1 root root         0 Mar 29 10:10 p.sql
-rw-r--r-- 1 root root   9963741 Mar 29 10:13 result.sql

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

相關文章