博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Hive命令 参数
阅读量:5290 次
发布时间:2019-06-14

本文共 1215 字,大约阅读时间需要 4 分钟。

1、hive -h
    显示帮助
2、hive -h hiveserverhost -p port
    
连接远程hive服务器
3、hive
--define a=1
--hivevar b=1
--hiveconf hive.cli.print.current.db=true
    见《Hive设置变量
4、hive -e "show tables";
    直接执行hivesql语句
    hive -e "show tables;" > a.txt;
    将执行结果(覆盖)输出到a.txt文件里,>>是追加
5、hive -f a.hql
    执行hsql文件,可以是hdfs上的文件
    hive -f /path/to/dir/a.hql;
    hive -f hdfs://vm1:8020/path/to/dir/a.hql;
6、hive -S -e "show tables;";
    -S 静默执行
7、hive -i init.sql
    hive会话刚启动后,立即执行hql里的内容
 
  1. [hive@vm1 conf]$ hive -h
  2. Missing argument for option: h
  3. usage: hive
  4. -d,--define <key=value> Variable subsitution to apply to hive
  5. commands. e.g. -d A=B or --define A=B
  6. --database <databasename> Specify the database to use
  7. -e <quoted-query-string> SQL from command line
  8. -f <filename> SQL from files
  9. -H,--help Print help information
  10. -h <hostname> connecting to Hive Server on remote host
  11. --hiveconf <property=value> Use value for given property
  12. --hivevar <key=value> Variable subsitution to apply to hive
  13. commands. e.g. --hivevar A=B
  14. -i <filename> Initialization SQL file
  15. -p <port> connecting to Hive Server on port number
  16. -S,--silent Silent mode in interactive shell
  17. -v,--verbose Verbose mode (echo executed SQL to the
  18. console)

转载于:https://www.cnblogs.com/lishouguang/p/4560758.html

你可能感兴趣的文章
NSArray的sorting排序
查看>>
docker建立和共享文件(服务器和docker之间的共享)
查看>>
全文检索技术---solr
查看>>
动态内存分配(Dynamic memory allocation)
查看>>
Java学习 第三章 java基础(一)
查看>>
C#网络编程数据传输中封装数据帧头的方法
查看>>
第一份offer
查看>>
RNN Train和Test Mismatch
查看>>
.net下各个数据类型所占用的字节
查看>>
“请求的操作无法在使用用户映射区域打开的文件上执行”问题处理
查看>>
微信公众平台接口API
查看>>
hdu 4493 Tutor
查看>>
MySQL--用户管理 pymysql 索引
查看>>
ListView onItemClick(AdapterView<?> parent, View view, int position, long id)参数详解
查看>>
解决RSA加密中,System.Security.Cryptography.CryptographicException: 系统找不到指定的文件...
查看>>
生产,消费者改进
查看>>
Python Twisted、Reactor
查看>>
easyui源码翻译1.32--Combo(自定义下拉框)
查看>>
C++11中function和bind的用法示例
查看>>
GRUB、MBR名词解释
查看>>