摘要:
最终的 /etc/profile :#在文件最后添加 # /etc/profile# System wide environment and startup programs, for login setup# Functions and aliases go in /etc/bashrc# It's NOT a good idea to change this fi... 阅读全文
摘要:
SELECT * FROM tb_common_biz PARTITION (p201707); 如果可以通过代码确定使用的PARTITION,可以这样查: SELECT * FROM B PARTITION(p1) 数据插入完成后,要验证是否对应id的数据保存在了对应的分区,可以使用查询分区的命令 阅读全文
摘要:
public static List CollStringToIntegerLst(List inList){ List iList =new ArrayList(inList.size()); CollectionUtils.collect(inList, new Transformer(){ ... 阅读全文