Kettle的匯入 Hive到Excel

2021-10-11 15:36:45 字數 659 閱讀 2792

1.建立資料檔案

1)vim /home/a.txt

1,11

2,22

3,33

2.操作hive

1)create database test;

2)use test;

3)create table a(a int,b int) row format delimited fields terminated by 『,』 stored as textfile;

4)load data local inpath 『/home/a.txt』 into table a;

5)select * from a;

3.開啟spoon.bat

4.核心物件子介面

1)選擇"輸入",將"表輸入"拖進工作區

2)選擇"輸出",將"excel輸出"拖進工作區

3)按住shift鍵,滑鼠拖拽"表輸入"圖示到"excel輸出"圖示上,產生連線

5.表輸入介面

1)資料庫連線:hive

2)sql:select a,b from a

6.excel輸出介面

1)檔案介面

1.1)檔名:c:\kettle\hive

1.2)副檔名

xls1.3)結果中新增檔名:打勾

7.執行

Kettle的匯入 Excel到Hive

1.操作hive 1 create database test 2 use test 3 create external table a a int,b int row format delimited fields terminated by stored as textfile 2.開啟spoo...

使用kettle匯入excel資料到mysql

kettle跑起來,要求有jre環境。另外,如果連線mysql資料庫的話,kettle本身是不包含mysql連線的jar,需要你手動放到安裝目錄的lib目錄下。如果是kettle啟動後放入的,需要重啟一下kettle。資料庫表設計圖 其中 id是主鍵 role code是角色 匯入時,根據excel...

匯入HDFS的資料到Hive

create external table if not exists finance.json serde optd table retcode string,retmsg string,data array row format serde org.apache.hive.hcatalog.da...