Hive(31):将txt数据导入ORC格式表一、实现功能二、实例三、参考
一、实现功能将txt或者csv数据加载到orc格式的hive中,因为不能直接创建orc类型数据,而直接将txt(csv)数据load进入orc表,会报错。所以,需要创建一个textfile格式中间表。二、实例1.创建textfile临时表:create table if not exists people_orc_txt( name string, gender string)row format delimited fields terminated by ',' sto