牛骨文教育服务平台(让学习变的简单)
博客笔记
17
2015-11
hive 动态分区(Dynamic Partition)异常处理 2015-11-17
Symptoms:Hive enforces limits on the number of dynamic partitions that it creates.  The default is 100 dynamic partitions per node, with a total (default) limit of 1000 dynamic partitions across
06
2015-06
HIVE快速入门 2015-06-06
(一)简单入门 1、创建一个表 create table if not exists ljh_emp( name string, salary float, gender string) comment "basic information of a employee" row format delimited fields termi

			
				hive中的一些基本问题解决方法
hive中的一些基本问题解决方法 2016-04-13
 #设置参数开启 动态分区(dynamic partition) hive> sethive.exec.dynamic.partition.mode=nonstrict;  #默认为strict hive> sethive.exec.dynamic.partition=true; #默认为false
26
2016-10
hive 动态加载数据到指定分区,以及其他hive使用的技巧 2016-10-26
hive修改分隔符: alter table tableName set SERDEPROPERTIES("field.delim"=" ");  hive根据数据创建分区,并且动态加载数据到分区 insert into table device_status_l

			
				Hive(十四)--静态分区和动态分区
Hive(十四)--静态分区和动态分区 2017-05-23
静态分区是分区的时候指定所分的区,不能自动实现分区。 动态分区可以在程序运行的时候以某一列变量的值进行分区。 静态分区表: 一级分
27
2014-12
Dynamic partition strict mode requires at least one static partition column. 2014-12-27
Dynamic partition strict mode requires at least one static partition column. To turn this off set hive.exec.dynamic.partition.mode=nonstrict 阅读更多
29
2017-04
C语言数组、指针强制类型转换 2017-04-29
今天在写到代码的时候,因为要将数据写入到flash中去,这块flash规定每次写入两个字节,然后发现了一个挺好玩的事情,那就是类型强制转换。 通过测试发
28
2011-08
char 类型指针与数组 赋值想到的 2011-08-28
  char *p = “hello”; 上边的表达式为什么可以,而把p换成数组,然后再赋值就不行了 解释: 字符串常量”hello”出现在一个表达式中时,表达式使
02
2016-11
gcc编程出错警告汇总(持续更新) 2016-11-02
警告:将一个指针转换为大小不同的整数 [-Wpointer-to-int-cast] printf(“print the address of a :%u ”, (unsigned int)&a); 我的环境是64位的,所以指针大小是8字节的,所

			
				关于java中char,byte,short的移位操作
关于java中char,byte,short的移位操作 2009-03-27
   在Think in Java中有这么一段话“对char,byte或者short进行移位处理,那么在移位进行之前,它们会自动转换成一个int。只有右侧的5个低位才会有