-
Hive的体系结构查看全部
-
创建索引后新生成的执行计划查看全部
-
执行计划 explain plan for select * from emp where deptno10 查询执行计划(oracle中) select * from table(dbms_xplan.display) 全表扫描 全表扫描的效率会很低 创建索引 create index myindex on emp(deptno) 在查询的列上创建索引,效率会高些查看全部
-
hive的元数据主要存储了表的信息表名 存放位置 等信息 列的信息查看全部
-
静默模式 hive -S查看全部
-
source /root/mysql查看全部
-
s查看全部
-
s查看全部
-
!clear 清屏(!执行linux系统命令) dfs -ls / 查看hdfs根目录文件 dfs -lsr / 递归查询 desc 表名 查看表结构查看全部
-
create external table st(sid int,sname string,age int) row format delimited field terminated by ',' location '/input';查看全部
-
create table partition_table(sid int ,sname string) partitioned by(gender string) row format delimited fields termimated by ','; insert into table partition_table partition(gender='M') select sid,sname from t1 where gender ='M'; insert into table partition_table partition(gender='F') select sid,sname from t1 where gender ='F';查看全部
-
create table t1(tid int,tname string.age int);--创建表,hive中 create table t1(tid int,tname string.age int) location '/mytable/hive/t2';--指定文件路径 create table t3(tid int,tname string.age int) row fotmat delimited fields terminated by ',';--文件数据以,分割 create table t4 as select *from t3;--创建和t3表一样的表 create table t5 row fotmat delimited fields terminated by ',' as select *from t3; alert table t1 add columns(english int);--加一列查看全部
-
数据仓库的建立查看全部
-
数据仓库的定义查看全部
-
hive体系结构查看全部
举报
0/150
提交
取消