-
数据仓库的结构和建立过程
查看全部 -
hive中的外部表
查看全部 -
hive中的外部表
查看全部 -
hive中的外部表
查看全部 -
hive中的分区表
查看全部 -
hive中的内部表
查看全部 -
hwi目录打包成war包 jar cvfM0 hive-hwi.war -C web/ . 设置hwi参数 <name>hive.hwi.listen.host</name>
查看全部 -
exlpain plan for select * from emp where deptno=10;
select * from table (dbms_xplain.display)
查看全部 -
HQL执行计划
查看全部 -
创建桶表
create table tb1 ( sid int, name string info sring )clustered by (name) into 5 buckets;
查看全部 -
创建外部表
create external table partition_table( id int, name string )row format delimited fields terminated by ',' location '/input';
查看全部 -
创建分区表
create table partition_table( id int, name string ) partitioned by (gender string) row format delimited fields terminated by ',';
往分区表插入数据
insert into partition_table partition(gender='M') select id,name from sample_table where gender='M';
查看全部 -
创建表时指定文件存储位置
create table t1 ( id int, name string ) location '/test/hive/t1';
创建表时指定分隔符:
create table t2 ( id int, name string ) row format delimited fields terminated by ',';
查看全部 -
内部表
分区表
外部表
桶表
查看全部 -
创建结构:
create table tb1 ( sid int, info struct<name:string,age:int,sex:string> );
数据样例: {1,{'Tom',10,'man'}}
查看全部
举报
0/150
提交
取消