MySQLDump Windows 下TXT格式備份(帶分隔符)

genweihua發表於2014-02-23
       MySQLDump 備份可以備份整個資料庫,也是可以備份指定資料庫,也可以備份指定的資料庫下的表;備份格式可以是SQL語句,也可以是txt格式。在MySQL的官網上,還有關於MySQL的部落格上,SQL檔案格式的檔案很多,也很容易找到,不過對於txt檔案格式的確實不多,也語焉不詳。況且MySQLimport命令是LOAD DATA INFILE 命令客戶端封裝版,所以瞭解一下也是應該的,就研究了一番,把結果放在和大家分享一下。
C:\Windows\System32>mysql -u root -p test
Enter password: ****
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 40
Server version: 5.1.73-community MySQL Community Server (GPL)

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> show tables;
+----------------+
| Tables_in_test |
+----------------+
| test           |
+----------------+
1 row in set (0.00 sec)

mysql> select * from test;
+------+-----------+
| id   | iname     |
+------+-----------+
|    1 | root      |
|    2 | localhost |
+------+-----------+
2 rows in set (0.00 sec)
mysql>

C:\Windows\System32>mysqldump --help  --檢視命令解釋
C:\Windows\System32>mysqldump -uroot -p --host=localhost test test --tab=e:\ -T
e:\ --fields-terminated-by , --lines-terminated-by \r\n
Enter password: ****
test.txt檔案結果:
1,root
2,localhost



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

相關文章