上一页 1 2 3 4 5 6 7 ··· 32 下一页
摘要: oracle 生成随机日期+时间 SELECT to_date(TRUNC(DBMS_RANDOM.VALUE(to_number(to_char(to_date('20110101','yyyymmdd'),'J')),to_number(to_char(to_date('20221231','y 阅读全文
posted @ 2019-10-09 11:11 Struts-pring 阅读(889) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/fab356d68ae2 grant connect,resource to xinomonitor; 发现不能进行断点调试,然后授如下权限 grant debug any procedure to xinomonitor;grant debug 阅读全文
posted @ 2019-09-18 14:29 Struts-pring 阅读(2288) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-09-11 15:44 Struts-pring 阅读(148) 评论(0) 推荐(0) 编辑
摘要: alter table t_user_channel_info change update_dttm update_dttm timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP(); ALTER TABLE t_user_info MODIFY COLUMN u 阅读全文
posted @ 2019-09-09 15:48 Struts-pring 阅读(691) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/yw0219/p/5939558.html 记录exit和return的用法 exit用来跳出循环 loop IF V_KBP IS NULL THEN EXIT; END IF; end loop; return跳出存储过程 loop IF V_KB 阅读全文
posted @ 2019-09-09 11:28 Struts-pring 阅读(440) 评论(0) 推荐(0) 编辑
摘要: rabbitMQ 重试机制 spring.rabbitmq.listener.simple.retry.max-attempts=5 最大重试次数spring.rabbitmq.listener.simple.retry.enabled=true 是否开启消费者重试(为false时关闭消费者重试,这 阅读全文
posted @ 2019-07-08 16:58 Struts-pring 阅读(2376) 评论(0) 推荐(1) 编辑
摘要: oracle update left join 写法 (修改某列,条件字段在关联表中) 案例: E:考核表 X,:用户表 USERNAME 关联 需求:修改营业部最高分 分析:通过登录账号的营业部ORG_ID 更新E表,E表中无ORG_ID 字段,X表中可以关联. 写法一: UPDATE USER_ 阅读全文
posted @ 2019-06-19 18:40 Struts-pring 阅读(2244) 评论(0) 推荐(0) 编辑
摘要: 在Ubuntu 18.04使用snap安装eclipse软件报时错: inuxidc@linuxidc:~$ snap install --classic eclipse error: snap "eclipse" has "install-snap" change in progress 其实就是 阅读全文
posted @ 2019-06-18 15:50 Struts-pring 阅读(706) 评论(0) 推荐(0) 编辑
摘要: delete from tabname t1 where rowid <> (select min(rowid) from tabname t2 where t1.col_name = t2.col_name and t1.id != t2.id); 阅读全文
posted @ 2019-06-18 15:18 Struts-pring 阅读(203) 评论(0) 推荐(0) 编辑
摘要: select group_concat(USERIDCARDHASH separator ';') from ( select a.*,'1' grouid from transact a left join userinfo b on a.USERIDCARDHASH = b.USERIDCARD 阅读全文
posted @ 2019-06-17 01:32 Struts-pring 阅读(250) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 32 下一页