資料匯入匯出小結:
mysql -u***x -p'***x' -d***x --execute="select id from court_doc;" > court_doc.txt
select * from test into outfile '/u02/mysql/dump/a.sql';
匯出的表中列較多,可以通過鍵值對的方式縱向顯示。可讀性就大大增強了。比如下面的方式:
mysql -u***x -p'***x' -d***x --vertical--execute="select *from test;" test > aa.sql
匯出的資料為
html
格式,也很清晰。直接呼叫
-html
選項即可。
mysql -u***x -p'***x' –d***x--html--execute="select *from test" test > aa.html
資料匯入方式
1 load data infile '/u02/mysql/dump/a.sql' into table test.test ;
mysql -p'***x' -u
***x
-d***x
--default-character=utf8
Hive 資料匯入匯出方式小結
1.最基本的匯入方式 load load data local inpath opt module datas test.txt overwrite into table student partition partcol1 val1,栗子 a 載入本地檔案到 hive hive default l...
ORACLE資料庫匯入匯出相關小結
表示變數或註解 表示可選項 表示原始意義 表示省略重複或者迴圈 1,oracle匯出某使用者的資料庫 非exp工具的exp命令 oracle自帶程式 exp owner file log grants y compress y full y example1 exp rofine rofine 19...
匯入匯出資料
從檔案中裝載資料 hive load data local inpath overwrite into table t2 partition province beijing local linux本地的檔案。無local 是hdfs的檔案 注意 從本地檔案系統中將資料匯入到hive表的過程中,其實...