上一页 1 2 3 4 5 6 7 8 ··· 54 下一页
摘要: select regexp_extract('ab中文123测试55。。', '[\u4e00-\u9fa5]+', 0) 只提出成功第一段中文汉字,结果为: 中文 select regexp_replace('ab中文123测试55。。', '[\u4e00-\u9fa5]+', "") 只去掉了 阅读全文
posted @ 2019-05-22 17:01 凌度 阅读(606) 评论(0) 推荐(0) 编辑
摘要: 修改GIT本地密码 控制面板-》用户账户和家庭安全-》凭证管理器-》普通凭证:git:hhtp://***** 阅读全文
posted @ 2019-04-10 09:50 凌度 阅读(1613) 评论(0) 推荐(0) 编辑
摘要: 默认感觉中文是按拼音排序,如果没实现效果,请加上其它排序,例如日期 表名为 dept ,其中name字段是中文,下面分别实现按照单位名称的笔划、部首和拼音排序。1: //按照笔划排序2: select * from dept order by nlssort(name,'NLS_SORT=SCHIN 阅读全文
posted @ 2019-04-01 10:54 凌度 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 在启动redis-cli时在其后面加上--raw参数即可启动后 再显示就正常了 阅读全文
posted @ 2019-03-18 09:34 凌度 阅读(1213) 评论(0) 推荐(0) 编辑
摘要: 应用图标需求:(像素px) 29pt: 58*58 ( @2x ) 87*87 ( @3x ) 40pt: 120*120 ( @2x ) 180*180 ( @3x ) 60pt: 120*120 ( @2x ) 180*180 ( @3x ) 参考:http://huaban.com/pins/ 阅读全文
posted @ 2019-03-06 14:22 凌度 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 1、下载scala sdk http://www.scala-lang.org/download/ 直接到这里下载sdk,(https://downloads.lightbend.com/scala/2.12.8/scala-2.12.8.msi) 2、下载scala for intellij id 阅读全文
posted @ 2019-03-01 10:23 凌度 阅读(2432) 评论(0) 推荐(0) 编辑
摘要: 官网:https://ci.apache.org/projects/flink/flink-docs-release-1.7/ops/deployment/cluster_setup.html cd /data1/downloadtar xzf flink-*.tgzcd flink-1.7.2 b 阅读全文
posted @ 2019-02-28 09:13 凌度 阅读(228) 评论(0) 推荐(0) 编辑
摘要: JDBC URL: 1、ServiceName方式:jdbc:oracle:thin:@//<host>:<port>/ServiceName 如果是集群,不知道为什么是在配置文件里面没效果,直接写在代码就可以 2、SID方式:jdbc:oracle:thin:@<host>:<port>:<SID 阅读全文
posted @ 2019-01-30 17:27 凌度 阅读(1248) 评论(0) 推荐(0) 编辑
摘要: 一. route命令 1) 查看:route -n 2)添加: route add [-net|-host] target [netmask Nm] [gw Gw] [[dev If] 目标:192.168.1.3 网关:172.16.0.1(必须与本地地址在同一网络) ~]# route add 阅读全文
posted @ 2019-01-30 11:09 凌度 阅读(23417) 评论(0) 推荐(0) 编辑
摘要: select ip ,concat('="',accountname,'"')select ip ,concat('="',accountname,'"') 阅读全文
posted @ 2019-01-15 12:38 凌度 阅读(10651) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 54 下一页