目录
一、问题描述:
二、解决方法:
1.只调参,只在当前会话内生效。
2.可修改hive配置文件,永久生效
一、问题描述:
在Hue中执行hive sql查询结果,没有显示出表头。
二、解决方法:
1.只调参,只在当前会话内生效。
不显示表名.列名:
set hive.cli.print.header=false;
显示表名.列名:
set hive.cli.print.header=true;
不显示表名,只显示列名:
set hive.resultset.use.unique.column.names=false;
2.可修改hive配置文件,永久生效
hive-site.xml
代码语言:javascript复制<property>
<name>hive.cli.print.header</name>
<value>true</value>
<description>Whether to print the names of the columns in query output.</description>
</property>
<property>
<name>hive.cli.print.current.db</name>
<value>true</value>
<description>Whether to include the current database in the Hive prompt.</description>
</property>