接上一节:
quit退出hive
可以查看帮助命令
bin/hive -help
直接进去目标库,而不用一层层进入
bin/hive --database db01
quit
-e linux里面直接跑的sql语句.如下
bin/hive -e 'show databases'
命令的结果输出出来: >text
bin/hive -e 'show databases' >test.txt
在hive文件夹下今年看到多了个test.txt文件了
-f的用法:
可以执行文件里面的语句
先去datas里新建一个.sql
cd /opt/datas
vi hive_sql.sql
然后回到hive文件夹
rm -rf test.txt
bin/hive -f /opt/datas/hive_sql.sql
--hiveconf 可以进行默认的临时参数的改变
bin/hive --hiveconf hive.cli.print.current.db=false //临时变成false不显示库名