Customise Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorised as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyse the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customised advertisements based on the pages you visited previously and to analyse the effectiveness of the ad campaigns.

No cookies to display.

Hive CLI Command

Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
Breadcrumb Abstract Shape
  • User AvatarKiran Dalvi
  • 02 Mar, 2022
  • 0 Comments
  • 53 Secs Read

Hive CLI Command

--define or –hivevar Options

1
2
3
4
5
6
7
8
9
10
hdfs@ubuntu1:~$ hive --define address='country, state, city, post'
hive> select ${address} from temp_hdfs limit 5;
OK
country     state   city         post
AU        TA        Leith       7315
AU        QL        Proston   4613
AU        WA        Hame     l  6215
AU        NS        Talmalmo    2640
Time taken: 0.57 seconds, Fetched: 5 row(s)
hive>

-- database Option

1
2
3
4
5
hdfs@ubuntu1 $ hive --database testdb
  
           or
  
hive> use testdb;

-s, -e Options, Environment variables & Redirecting Output to File

1
2
$ export VAR1='London'
$ hive -S -e "SELECT firstname, state, city FROM temp_hdfs WHERE city='${VAR1}'" > temp_out.txt

Connecting Remote Hive Server

1
2
3
4
5
6
7
8
9
10
hdfs@tri03ws-386:~$ hive -h 172.16.3.78 -p 10000
  
Logging initialized using configuration in jar:file:/home/hdfs/bigdata/apache-hive-0.14.0-bin/lib/hive-common-0.14.0.jar!/hive-log4j.properties
...............
[172.16.3.78:10000] hive> show tables;
adapter
mytest
page_view
page_view14
emp

Running Queries from file

1
hive -f /home/hdfs/test.hql

Hive Batch Mode Commands

1
2
hive -e "<query-string>"
hive -f <filepath>  – executes one or more SQL queries from a file