hive新增txt檔案轉oec表

2022-07-10 09:21:15 字數 789 閱讀 5993

1 2 x

2 2 x

3 2 x

4 2 x

建立textfile格式的表

create table test_txt(id

int,num int,txt string

)row format delimited fields terminated by '\t

'lines terminated by '\n

'stored as textfile;

指定分隔符為\t

row format delimited fields terminated by '\t'

指定換行符,不然可能會匯入null資料

lines terminated by '\n'

建立orc格式的表

create table test_orc(id

int,num int,txt string

)stored as orc;

hdfs dfs -put /opt/test.txt /test

載入.txt檔案到textfile格式的表

load data inpath '

/test/test.txt

' into table test_txt;

載入test_txt表資料到orc格式的表

insert into table test_orc select * from test_txt;

java生成txt檔案,讀txt檔案

1.方法1 public static void main string args catch exception e system.out.println write end try filereader.close catch exception e system.out.println rea...

python實現為 txt檔案每行新增資料

import os import numpy as np txt檔案的路徑 path home yangguide videos 0.txt open path 開啟.txt檔案 with open path as f1 cnames f1.readlines readlines 讀取.txt檔案的...

PHP生成TXT檔案 php讀取txt檔案內容

filename filename.txt header content disposition attachment filename filename 輸出內容 直接用echo輸出,r n 用以換行。第一步 處理中文檔名 filename 中文檔名.txt encoded filename ur...