【踩坑实录】hive cli查询不显示表头

2022-11-13 13:21:56 浏览数 (1)

目录

一、问题描述:

二、解决方法:

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>

0 人点赞