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
- windows下使用mysqldump備份資料庫並上傳到阿里雲OSSWindowsMySql資料庫阿里
- mysqldump 資料庫備份程式MySql資料庫
- mysql5.6 mysqldump備份報錯MySql
- MySQL主從配置及mysqldump備份MySql
- [20190710]windows文字格式.txtWindows
- mysqldump全量備份+mysqlbinlog二進位制日誌增量備份MySql
- mysqldump壓縮備份匯出匯入(含定期備份shell指令碼)MySql指令碼
- mysqldump+mysqlbinlog執行備份與還原MySql
- Linux基礎命令---mysqldump資料庫備份LinuxMySql資料庫
- Mysql備份和還原資料庫-mysqldumpMySql資料庫
- MySQL:Windows下分庫備份指令碼MySqlWindows指令碼
- [20180503]珅與分隔符.txt
- 使用Mysqldump備份和恢復MySQL資料庫MySql資料庫
- Mysqldump備份說明及資料庫備份指令碼分享-運維筆記MySql資料庫指令碼運維筆記
- [20190313]備份問題.txt
- Windows下的IIS7證書備份Windows
- Mysqldump 在備庫進行備份時會阻塞備庫的sql_threadMySqlthread
- 詳解MySQL資料備份之mysqldump使用方法MySql
- windows txt怎麼轉成unix 格式Windows
- Windows備份工具——FreeFileSyncWindows
- [20190522]rman備份問題.txt
- [20221020]奇怪的增量備份.txt
- 關於mysqldump備份非事務表的注意事項MySql
- mysqldump備份單庫、部分庫、全庫、及排除部分庫MySql
- Networker備份windows檔案Windows
- windows10如何備份系統_windows10製作系統備份Windows
- 當心!使用mysqldump備份可能會讓你欲哭無淚MySql
- mysqldump備份時如何保持資料的一致性MySql
- mysqldump使用方法(MySQL資料庫的備份與恢復)MySql資料庫
- Windows伺服器下修改iTunes備份路徑 的方法Windows伺服器
- Oracle磁帶備份模擬Oracle
- [20200809]12c熱備份模式.txt模式
- mysqldump 備份匯出資料排除某張表或多張表MySql