posted @ ke 阅读(2687) | |
posted @ ke 阅读(1942) | |
摘要: --使用 from_unixtime 和 unix_timestamp 将时间列转化成想要的格式
--然后再insert表,动态指定分区
insert overwrite table partition_user_table partition (dt) select id, account, name, create_time, from_unixtime(unix_timestamp(create_time,'yyyy/mm/dd'),'yyyymmdd') as dt from external_user_table;
posted @ ke 阅读(535) | |
摘要: 要修改的列由某个虚拟表达式使用
posted @ ke 阅读(2757) | |
摘要:
方法一:
1 var data, json;
2 json = '[{"id":"年计划","text":"年计划","selected":true}]';
3 data = $.parsejson(json);
4 $("#rwlb").combobox("loaddata", data);
方法二:
1 var data,json;
2 data = [];
3 data.push({ "text": "测试", "id": 100 });
4 $("#rwlb").combobox("loaddata", data);
posted @ ke 阅读(4435) | |
摘要: 十进制与十六进制的转换
8i以上版本:
十进制-->十六进制
select to_char(100,'xx') from dual;
十六进制-->十进制
select to_number('7d','xx') from dual;
其中xx为格式,注意xx的位数不能小于传入的参数。
posted @ ke 阅读(1418) | |
摘要: with cte as
(
-->begin 一个定位点成员
select id, name,parent,cast(name as nvarchar(max)) as te,
row_number()over(order by getdate()) as orderid
--最关键是上面这个字段,要获取排序字段,按字符串来排序。
--其中窗口函数必须要使用order by,但是不能用整型,那就用时间吧
from tree where parent is null
-->end
union all
-->begin一个递归成员
select tree.id, tree.name,tree.parent,cast(replicate(' ',len(cte.te)) '|_' tree.name as nvarchar(max)) as te,
<
posted @ ke 阅读(720) | |
posted @ ke 阅读(1915) | |
posted @ ke 阅读(2592) | |
posted @ ke 阅读(772) | |
posted @ ke 阅读(1209) | |
摘要: 存储过程递归调用时 游标的使用注意事项 必须把游标声明为局部的,即加上local
posted @ ke 阅读(852) | |
摘要: openbravo developers_guide notes
posted @ ke 阅读(785) | |
摘要: redhat 9.0,提示determining ip information for eth0... failed; no link present. check cable?无法激活网络设备eth0
我搜的相关凯发天生赢家一触即发官网的解决方案为:
到/etc/sysconfig/network-scripts/ifcfg-eth
/etc/sysconfig/networking/devices/ifcfg-eth 其中表示ethernet adapter的标识数字,一般为0。当为零的时候,就是
/etc/sysconfig/network-scripts/ifcfg-eth0
/etc/sysconfig/networking/devices/ifcfg-eth0 这两个文件中加入
check_link_down () {
return 1;
}
posted @ ke 阅读(1465) | |