-
数据仓库的结构和建立过程
查看全部 -
编写hql语句
解析器进行语法分析
编译器生成hql执行计划
优化器生成最佳执行计划
执行
查看全部 -
桶表 是对数据进行哈希取值,相同的哈希放到不同的文件中储存。
查看全部 -
create table partition_table
(sid int,sname string)
partitioned by (gender string)
row format delimited fields terminated by ',';
insert into table partition_table partition(gender='m') select where gender='m'
查看全部 -
row format delimited fields terminated by ',';
查看全部 -
hive数据类型-复杂数据类型-数组数据类型要相同-
------------------------------------结构数据类型要不同-----
查看全部 -
黄洪查看全部
-
Hive 的体系结构:
查看全部 -
ORACLE 查看执行计划:
SQL> explain plan for select * from emp where deptno = 10;
SQL> select * from table(dbms_xplan.display);
HIVE 查看执行计划:
SQL> explain ......
查看全部 -
外部表的概念查看全部
-
分区表, 执行计划 explain查看全部
-
星型模型和雪花模型
查看全部 -
hive的元数据
查看全部 -
。。。。。
查看全部 -
hive 解析器 编译器 优化器
HQL 执行计划,
使用索引可以加快执行计划
查看全部
举报