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

目录

一、问题描述:

二、解决方法:

1.只调参,只在当前会话内生效。

2.可修改hive配置文件,永久生效


一、问题描述:

在Hue中执行hive sql查询结果,没有显示出表头。


 

二、解决方法:

1.只调参,只在当前会话内生效。

不显示表名.列名:

set hive.cli.print.header=false;

 

显示表名.列名:

set hive.cli.print.header=true;

【踩坑实录】hive cli查询不显示表头_第1张图片

 

不显示表名,只显示列名:

set hive.resultset.use.unique.column.names=false;

 

2.可修改hive配置文件,永久生效

hive-site.xml


        hive.cli.print.header
        true
        Whether to print the names of the columns in query output.
    
    
        hive.cli.print.current.db
        true
        Whether to include the current database in the Hive prompt.
    

你可能感兴趣的:(踩坑记录,hive,hadoop,数据仓库)