Mysql 匯出txt格式
Mysql 匯出txt格式
1. select display_name, alias, address from nagios_hosts into outfile '/tmp/test2.txt';
匯出檔案格式:
192.26.1.180.app.rhl6.4 管理員: 192.26.1.180
192.26.1.181.app.rhl6.4 管理員: 192.26.1.181
可以指定間隔
2.mysqldump -u root -p123456 test test2 -t -T /tmp/ --fields-terminated-by=',' --lines-terminated-by='\n'
test 資料庫名字
test2 表名字
-t 不匯出create資訊
-T 指定匯出的位置(目錄),檔案命令方式:表名.txt 自動生成的
--fields-enclosed-by=\"
--fields-terminated-by=, 列間隔用,表示
--fields-terminated-by=name
Fields in the output file are terminated by the given
string.
--fields-enclosed-by=name
Fields in the output file are enclosed by the given
character.
--fields-optionally-enclosed-by=name
Fields in the output file are optionally enclosed by the
given character.
--fields-escaped-by=name
Fields in the output file are escaped by the given
character.
--lines-terminated-by='\n' 行間隔用回車表示
--lines-terminated-by=name
Lines in the output file are terminated by the given
string.
linux系統裡提供的檔案轉化編碼的命令iconv,使用如下:
iconv -t utf-8 -f gb2312 -c my_database.sql > new.sql
-f 原編碼
-t 目標編碼
-c 忽略無法轉換的字元
1. select display_name, alias, address from nagios_hosts into outfile '/tmp/test2.txt';
匯出檔案格式:
192.26.1.180.app.rhl6.4 管理員: 192.26.1.180
192.26.1.181.app.rhl6.4 管理員: 192.26.1.181
可以指定間隔
2.mysqldump -u root -p123456 test test2 -t -T /tmp/ --fields-terminated-by=',' --lines-terminated-by='\n'
test 資料庫名字
test2 表名字
-t 不匯出create資訊
-T 指定匯出的位置(目錄),檔案命令方式:表名.txt 自動生成的
--fields-enclosed-by=\"
--fields-terminated-by=, 列間隔用,表示
--fields-terminated-by=name
Fields in the output file are terminated by the given
string.
--fields-enclosed-by=name
Fields in the output file are enclosed by the given
character.
--fields-optionally-enclosed-by=name
Fields in the output file are optionally enclosed by the
given character.
--fields-escaped-by=name
Fields in the output file are escaped by the given
character.
--lines-terminated-by='\n' 行間隔用回車表示
--lines-terminated-by=name
Lines in the output file are terminated by the given
string.
linux系統裡提供的檔案轉化編碼的命令iconv,使用如下:
iconv -t utf-8 -f gb2312 -c my_database.sql > new.sql
-f 原編碼
-t 目標編碼
-c 忽略無法轉換的字元
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29500582/viewspace-1756727/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- mysql匯入匯出.csv格式資料MySql
- Oracle表中資料匯出成 Txt格式的方案Oracle
- MySQL 匯出資料為csv格式的方法MySql
- [MySQL Help]MySQL Workbench用csv格式匯出資料亂碼MySql
- php匯出csv格式PHP
- python解析fiddler匯出txt流量資料為json格式PythonJSON
- linux 下MySQL命令列匯出csv檔案格式LinuxMySql命令列
- Oracle 匯出txt檔案Oracle
- 快速匯出requestment.txt
- Mysql匯入&匯出MySql
- Mysql匯入匯出MySql
- oracle 匯出excel 格式整改OracleExcel
- mysql匯入csv格式檔案MySql
- mysql 命令匯入匯出MySql
- mysql匯入匯出慢MySql
- mysql 匯入、匯出命令MySql
- Linux 上將 txt 匯入 mysqlLinuxMySql
- PHP 匯出 CSV 格式檔案PHP
- 匯出資料為csv格式
- Java匯出Pdf格式表單Java
- oralce 匯出csv格式檔案
- OleDb匯出標準格式EXCEL,Excel
- NOPI匯出標準格式ExcelExcel
- oracle以0x0f十六制分隔符匯出txt格式資料Oracle
- 使用BCP將SQL Server表資料匯出為txt或xls等格式檔案SQLServer
- mysql資料匯入匯出MySql
- mysql資料匯出匯入MySql
- SQLSERVER匯出TXT文字檔案,ORACLE SQL LOADER匯入TXT文字檔案SQLServerOracle
- 使用mysql直接匯出資料為txt或csv時使用-q引數MySql
- SQLServer匯出匯入資料到MySQLServerMySql
- mysql 匯入匯出 sql檔案MySql
- MySQL匯入匯出平面檔案MySql
- mysql 資料庫匯入匯出MySql資料庫
- MySQL資料庫匯入匯出MySql資料庫
- mysql匯出資料MySql
- MySQL 匯出資料MySql
- 【mysql】資料庫匯出和匯入MySql資料庫
- mysql多執行緒匯出匯入MySql執行緒