Hive常用交互命令
[dev1@hadoop102 hive]$ bin/hive -help
》》1 "-e"不进入hive的交互窗口执行sql语句
[dev1@hadoop102 hive]$ bin/hive -e "select id from default.student;"
》》2 "-f"执行脚本中sql语句
(1)在/opt/module/data目录下创建hivef.sql文件
[dev1@hadoop102 data]$ vim hivef.sql
文件中写入正确的sql语句
select *from student;
(2)执行文件中的sql语句
[dev1@hadoop102 hive]$ bin/hive -f /opt/module/data/hivef.sql
(3)执行文件中的sql语句并将结果写入文件中
[dev1@hadoop102 hive]$ bin/hive -f /opt/module/data/hivef.sql > /opt/module/data/hive_result.txt
Hive其他命令操作
1)退出hive窗口:
hive(default)>exit;
hive(default)>quit;
2)在hive cli命令窗口中如何查看hdfs文件系统
hive(default)>dfs -ls /;
3)在hive cli命令窗口中如何查看hdfs本地系统
hive(default)>! ls /opt/module/data;
4)查看在hive中输入的所有历史命令
(1)进入到当前用户的根目录/root或/home/dev1
(2)查看. hivehistory文件
[dev1@hadoop102 ~]$ cat .hivehistory