我是靠谱客的博主 斯文乐曲,最近开发中收集的这篇文章主要介绍Hive常用shell命令,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

(1)创建数据库:create database zy_test;
(2)显示所有数据库:show databases;
(3)使用某数据库:use sgs_test;
(4)显示所有表:show tables;
(5)创建表:create table zy_test(name string);
(6)描述表:desc sgs_test.zy_test;
(7)本地导入hive:load data local inpath '/home/sgs_test/test.txt' overwrite into table sgs_test.zy_test;
(8)查询表:select * from sgs_test.zy_test;
(9)hive导出到本地:insert overwrite local directory '/home/sgs_test/' select * from sgs_test.zy_test;
(10)删除表:drop table zy_test;
(11)create table zy_test(name string);
(12)hdfs导入hive:load data inpath '/tmp/test.txt' overwrite into table sgs_test.zy_test;
(13)hive导出至hdfs:insert overwrite directory '/tmp/zy/' select * from sgs_test.zy_test;
(14)创建外部表:create external table sgs_test.zy_test_ext(name string) row format delimited fields terminated by ',' stored as orc;

最后

以上就是斯文乐曲为你收集整理的Hive常用shell命令的全部内容,希望文章能够帮你解决Hive常用shell命令所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部