MySQLDump Windows 下TXT格式備份(帶分隔符)
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
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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- windows mysqldump備份指令碼WindowsMySql指令碼
- 簡單的mysqldump備份(windows)MySqlWindows
- 【mysqldump】mysqldump及備份恢復示例MySql
- mysqldump備份技巧分享MySql
- MySQLDump的備份方法MySql
- Mysqldump的備份流程MySql
- mysqldump 備份指令碼MySql指令碼
- mysqldump備份指令碼MySql指令碼
- 邏輯備份--mysqldumpMySql
- windows下使用mysqldump備份資料庫並上傳到阿里雲OSSWindowsMySql資料庫阿里
- mysqldump備份原理解析MySql
- mysql 邏輯備份 (mysqldump)MySql
- mysqldump備份不輸入密碼直接備份MySql密碼
- Windows 下備份 archive logWindowsHive
- mysqldump 資料庫備份程式MySql資料庫
- MySQL 5.5 mysqldump備份說明MySql
- mysqldump常用備份恢復方法MySql
- mysql 備份資料庫 mysqldumpMySql資料庫
- mysqldump 進行資料備份MySql
- Windows下RMAN備份指令碼Windows指令碼
- Windows下RMAN備份程式碼Windows
- MySQL主從配置及mysqldump備份MySql
- mysql5.6 mysqldump備份報錯MySql
- Mysqldump備份的基本流程介紹MySql
- mysqldump備份指令碼一例MySql指令碼
- mysqldump如何只備份表結構MySql
- mysql備份恢復mysqldump面面觀MySql
- windows下exp邏輯備份並且定期維護備份Windows
- mysqldump 全量和增量備份指令碼MySql指令碼
- mysql之 mysqldump 備份恢復詳解MySql
- Mysql增量備份之Mysqldump& MylvmbackupMySqlLVM
- mysqldump 備份單張表和恢復MySql
- mysql的常用備份工具:mysqldump和mysqlhotcopyMySql
- Mysql備份系列(2)--mysqldump備份(全量+增量)方案操作記錄MySql
- MySQL:Windows下分庫備份指令碼MySqlWindows指令碼
- windows下rman自動備份指令碼Windows指令碼
- windows 下的Oracle 冷備份指令碼WindowsOracle指令碼
- mysqldump全量備份+mysqlbinlog二進位制日誌增量備份MySql