博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hive建表范例
阅读量:6291 次
发布时间:2019-06-22

本文共 859 字,大约阅读时间需要 2 分钟。

建表范例:支持update和delete

create table aaa(id string,visitor_name string)clustered by(id) into 2 bucketsstored as orc TBLPROPERTIES('transactional'='true');

 

目前只有ORCFileformat支持AcidOutputFormat,另外,建表时必须指定('transactional' = true)

2.alter table aaa set serdeproperties('serialization.null.format' = ''); -- 这个是设置null在hdfs里的处理方式

注意: stored as orc 的情况下,不能使用insert overwrite table,不支持。

create table if not exists aaa( id string, user_name string)row format delimited fields terminated by '\t' stored as textfile;

 

stored as textfile可以支持"insert overwrite table "

 3.建表范例:textfile

create table if not exists user(id string comment 'openId', phone string comment '电话', user_name string comment '用户名', sex string comment '性别,直接存男女', certificate_no string comment '身份证',  create_time string )row format delimited fields terminated by '\t' NULL DEFINED AS '' stored as textfile;

 

转载地址:http://oxkta.baihongyu.com/

你可能感兴趣的文章
Android.mk 文件语法详解
查看>>
QT liunx 工具下载
查看>>
内核源码树
查看>>
Java 5 特性 Instrumentation 实践
查看>>
AppScan使用
查看>>
Java NIO框架Netty教程(三) 字符串消息收发(转)
查看>>
Ucenter 会员同步登录通讯原理
查看>>
php--------获取当前时间、时间戳
查看>>
Spring MVC中文文档翻译发布
查看>>
docker centos环境部署tomcat
查看>>
JavaScript 基础(九): 条件 语句
查看>>
Linux系统固定IP配置
查看>>
配置Quartz
查看>>
Linux 线程实现机制分析
查看>>
继承自ActionBarActivity的activity的activity theme问题
查看>>
设计模式01:简单工厂模式
查看>>
项目经理笔记一
查看>>
Hibernate一对一外键双向关联
查看>>
mac pro 入手,php环境配置总结
查看>>
MyBatis-Plus | 最简单的查询操作教程(Lambda)
查看>>