我使用hivexml serde解析嵌套的xml文件,但它在我們從配置元表中選擇數據時返回null。 示例xml文件是xml data。 查詢我爲解析xml而創建的。 CREATE EXTERNAL TABLE IF NOT EXISTS abc (mail string, Type string, Id bigint, Date string, LId bigint, value string)
我創建與IP地址列的列數據表, create table test (id int,name string,ip_adress string) ROW FORMAT DELIMITED
FIELDS TERMINATED BY ‘,’ ;
,所以我會用什麼樣的數據類型來定義ip_adress列? 我試過字符串,二進制&數組數據類型,沒有任何工作。
員工: Table data 我想通過運行蜂巢腳本sample.hql去取年= 2016的記錄。 use octdb;
select * from '${hiveconf:table}' where year = '${hiveconf:year}';
[[email protected] ~]$ hive -hiveconf table='employee', year=2016 -f s