-
*桶表 桶表通过哈希运算,把运算出的相同哈希值放在一起,以减少热块 create table bucket_table (name string,age int) clustered by(name)into 5 buckets; --五个桶
查看全部 -
>create external table external_student (sid int, sname string, age int) row format delimited fields terminate by ',' location '/input'; //创建一个以','为分隔符的外部表,这个外部表与HDFS中/input目录下的文件相关联
查看全部 -
创建一个partition表
create table partition_tabel(sid int,sname string) partitioned by (gender string) row format delimited fields terminated by ',';
向partition表中添加数据
insert into table partition_table partition(gender='M') select sid,sname from sample_data where gender='M';
查看全部 -
hive -S
静默模式,不打印调试信息
hive -e ‘show tables’;
在操作系统命令行下执行hive命令。
hive -S -e ‘show tables’;
在操作系统命令行下执行hive命令(静默模式
查看全部 -
常见的 Hive CLI 命令:
- 清屏:Ctrl + L 或者 !clear;
- 查看数据仓库中的数据库:show databases;
- 查看数据仓库中的表:show tables;
- 查看表结构:`desc tb_name;`或`describe tb_name;`
- 查看建表语句:`show create table tb_name;`
- 查看数据仓库中的内置函数:`show functions;`
- 查看 HDFS 上的文件:`dfs -ls hdfs_dir;`
- 执行 Linux 操作系统的命令:`!命令;`
- 执行 SQL 脚本:`source SQL文件`查看全部 -
他将SQL语句转移成M/R Job然后再Hadoop执行
查看全部 -
hive是基于hadoop的数据仓库
查看全部 -
hive命令会在执行的目录下创建metastore_db目录保存信息
查看全部 -
数据存储以及管理
查看全部 -
Hive的安装-远程模式
查看全部 -
Hive的安装-本地模式
查看全部 -
Hive的安装-嵌入模式
查看全部 -
Hive的元数据
查看全部 -
Hive简介2
查看全部 -
Hive简介
查看全部
举报