create table if not exists test_orc(

name string,

age int,

address string

) partitioned by (dt string)
STORED AS ORC;

 

set hive.execution.engine=tez;

set hive.llap.execution.mode=auto;

select * from test_orc;

 

相关文章:

  • 2021-11-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-08
猜你喜欢
  • 2022-12-23
  • 2021-10-26
  • 2021-12-29
  • 2022-12-23
  • 2022-12-23
  • 2021-10-29
  • 2021-06-01
相关资源
相似解决方案