invoketheshell
invoketheshell

Reputation: 3897

How can you supress hive column names printing to CLI?

I have so many columns in my hive table that it is causing my text editor to crash upon the completion of my jobs. I am hoping there is a

set hive.exec.showheaders=false

I have looked through the hive JIRA but can't fine a way to change any type of setting.

Upvotes: 0

Views: 115

Answers (1)

sras
sras

Reputation: 838

set the property below to false.

hive> set hive.cli.print.header=false;

Upvotes: 1

Related Questions