一、类型转换1、自动转换(隐式转换)2、强制转换(显示转换)1)、用()。()内是转换后的数据类型,只能转换同一大类例:float a; double b=3.14; a=(float)b;2)、用convert。例:float a; double b=3.14;a=Convert.To singl...
分类:
其他好文 时间:
2014-08-16 00:56:29
阅读次数:
355
一、 Hive join优化
1. 尽量将小表放在join的左边,我们这边使用的hive-0.12.0,所以是自动转化的,既把小表自动装入内存,执行map side join(性能好), 这是由参数hive.auto.convert.join=true 和hive.smalltable.filesize=25000000L)参数控制(默认是25M),如果表文件大小在25M左右,可...
分类:
其他好文 时间:
2014-08-15 17:50:39
阅读次数:
272
Linux下修改图片格式
在终端上安装imagemagick
sudo apt-get install imagemagick
cd到相应的图片所在目录
#把 .png 转到 .jpg
convert *.png *.jpg
rm -r *.png...
分类:
系统相关 时间:
2014-08-15 00:08:06
阅读次数:
405
1、查找员工的编号、姓名、部门和出生日期,如果出生日期为空值,显示日期不详,并按部门排序输出,日期格式为yyyy-mm-dd。 select emp_no,emp_name,dept,isnull(convert(char(10),birthday,120),'日期不详') birthdayfrom...
分类:
数据库 时间:
2014-08-14 16:29:08
阅读次数:
313
String to Integer (atoi)Implementatoito convert a string to an integer.Hint:Carefully consider all possible input cases. If you want a challenge, plea...
分类:
其他好文 时间:
2014-08-14 01:25:17
阅读次数:
255
本以为四年恒久远,哪知转眼一瞬间[问题描述]Implementatoito convert a string to an integer.Hint:Carefully consider all possible input cases. If you want a challenge, please...
分类:
其他好文 时间:
2014-08-13 22:18:07
阅读次数:
272
gen already exists but is not a source folder. Convert to a source folder or rename it.svn 更新项目后,出现了~上面的错误。解决方法:1. 右键点击project,选择 "Properties"2. 选择左边的...
分类:
其他好文 时间:
2014-08-13 14:33:36
阅读次数:
257
Convert NSString to intNSString *aNumberString = @"123";int i = [aNumberString intValue];Convert int to NSStringint aNumber = 123;NSString *aString = ...
分类:
其他好文 时间:
2014-08-13 10:17:15
阅读次数:
122
字符串 日期数学 其他:isnull convert row_numberselect len('dshgjkdhsad') 返回指定字符串表达式的字符数,其中不包含尾随空格。itrim(' anc skkmkls ') 返回删除了前导空格之后的字符表达式...
分类:
其他好文 时间:
2014-08-12 21:32:54
阅读次数:
224
转载至:http://blog.csdn.net/eroswang/article/details/3847304
iconv的用法:
用法: iconv [选项...] [文件...]
Convert encoding of given files from one encoding to another.
输入/输出格式规范:
-f, --from-code=NAME...
分类:
系统相关 时间:
2014-08-12 19:04:04
阅读次数:
326