0
我想我的CSV數據導入到蜂巢錯誤試圖導入CSV成蜂巢
我的查詢:
CREATE EXTERNAL TABLE student(Stud_name String,dept String,year String)
> ROW FORMAT serde 'org.apache.hadoop.hive.serde2.OpenCSVSerde'
> with serdeproperties (
> "separatorChar" = ","
>)
> STORED AS TEXTFILE
> LOCATION '/home/codewarrior/Desktop/csv';
您在開頭放的代碼實際上與您在截圖中顯示的代碼不同 - 不同的表名,不同的字段和escapeChar serde參數。你能複製和粘貼你正在使用的*精確*代碼,以便我們可以看看你正在運行的是什麼? –