Member since
04-28-2020
2
Posts
0
Kudos Received
0
Solutions
04-28-2020
07:28 AM
Please check below command, here 2> /dev/null will consume all the logs and error. It will now allow standard output to be shown: beeline -u jdbc:hive2://somehost_ip/ -f 2> /dev/null hive.hql >op.txt if you like this please give me kudos. Thanks!!!
... View more
04-28-2020
07:22 AM
Please try this, this will only output the stadard output of the not error or logs: beeline -u jdbc:hive2://somehost_ip/ -f hive.hql 2> /dev/null >op.txt
... View more