上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 23 下一页
摘要: select * from (select a.* row_number() over(partition by a.task_type,to_char(a.oper_time,'yyyymmdd') order by a.oper_time desc) rank from test a ) t w 阅读全文
posted @ 2020-11-17 14:11 rjm123456 阅读(209) 评论(0) 推荐(0) 编辑
摘要: with t1 as(select d.p-d.dlrt cha,d.* from (select c.*, rank() over(partition by c.cos_id order by c.dlrq desc) as rank2 from (select b.cos_id, b.dlrq, 阅读全文
posted @ 2020-11-17 11:59 rjm123456 阅读(98) 评论(0) 推荐(0) 编辑
摘要: select date '2020-11-17' from dual; -- 2020/11/17 阅读全文
posted @ 2020-11-17 11:27 rjm123456 阅读(44) 评论(0) 推荐(0) 编辑
摘要: SELECT SYSDATE ,TRUNC(SYSDATE),TRUNC(SYSDATE -1),SYSDATE-1/24 FROM DUAL;2020/11/17 10:58:06 2020/11/17 2020/11/16 2020/11/17 9:58:06 阅读全文
posted @ 2020-11-17 11:01 rjm123456 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 1.instr('源字符串','目标字符串’,'开始位置','第几次出现')函数select instr('BRD_SOI_standard-202011120.xml','-') from dual;--172、TO_DATA(substr('BRD_SOI_standard-202011120. 阅读全文
posted @ 2020-11-17 10:55 rjm123456 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 在windows下新建的sh文件,copy到linux下有的会报错,一般是格式问题。 使用vim进行一下文件格式fileformat转换 可使用fileformat或简写ff set ff 或 set ff? #显示当前文件格式 set fileformat=unix 或 set ff=unix # 阅读全文
posted @ 2020-10-22 16:23 rjm123456 阅读(348) 评论(0) 推荐(0) 编辑
摘要: crontab 定时环境crontab -l 查看crontab -e 编辑10 7,8,9 * * * sh /app/dcol/markit/markit/markit.sh shell 脚本跑python 脚本#!/bin/bashsource ~/.bash_profiledata_date 阅读全文
posted @ 2020-10-22 16:21 rjm123456 阅读(57) 评论(0) 推荐(0) 编辑
摘要: shell 模板#/bin/shprocessl=`sqlplus -s dcm/dcm@215.8.7:11521/dcsdb<<E0FINSERT INTO T1 () VALUSES();COMMIT;EXIT;EOF` process2=`sqlplus -s dcm/dcm@215.8.7 阅读全文
posted @ 2020-10-22 12:03 rjm123456 阅读(79) 评论(0) 推荐(0) 编辑
摘要: sftp zygf@xxx.xxx.xxx.xxx 进行登录(zygf为用户名) bye 退出sftpcd change your remote working directoryclear clear screenexit 退出sftpexplore 浏览本地目录 get 下载help give 阅读全文
posted @ 2020-10-22 11:57 rjm123456 阅读(632) 评论(0) 推荐(0) 编辑
摘要: Microsoft Visual C++ 2015 Redistributable (x64) 安装失败 查看日志出现下面错误 Error 0x80240017: Failed to execute MSU package. 需要依次安装下面补丁: 1、KB2919442https://www.mi 阅读全文
posted @ 2020-09-25 11:39 rjm123456 阅读(14482) 评论(0) 推荐(3) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 23 下一页