1
2
3
4
5
6
7
8
9
10
11
12
13
|
usage: hive
-d,--define <key=value> Variable substitution to apply to Hive
commands. e.g. -d A=B or --define A=B
--database <databasename> Specify the database to use
-e <quoted-query-string> SQL from command line (SQL来自命令行)
-f <filename> SQL from files (SQL来自文件)
-H,--help Print help information
--hiveconf <property=value> Use value for given property (通过命令行参数的方式进行配置信息的设置)
--hivevar <key=value> Variable substitution to apply to Hive
commands. e.g. --hivevar A=B
-i <filename> Initialization SQL file
-S,--silent Silent mode in interactive shell
-v,--verbose Verbose mode (echo executed SQL to the console) (详细模式,在控制台输出SQL执行)
|