摘要: oracle删除某一条数据的时候,提示 使用以下sql查询外键的位置 SELECT A .constraint_name, A .table_name, b.constraint_name FROM user_constraints A, user_constraints b WHERE A .co 阅读全文
posted @ 2019-10-18 11:39 wullll 阅读(8772) 评论(0) 推荐(1) 编辑
摘要: 因为使用fxo设备的时候,fxo设备没有联网,所有我要用 telnet 同步一下时间 telnet 10.xx.xx.xx9 然后就进去了 telnet 172.29.1.6 Connecting to 172.29.1.6:23...Connection established.To escape 阅读全文
posted @ 2019-10-18 09:06 wullll 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 环境:VMware 、CentOS release 6.8网络设置为桥接 vim /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE="eth0" BOOTPROTO="static" HWADDR="00:0C:29:83:7F:A3" IPV6INI 阅读全文
posted @ 2019-10-13 18:47 wullll 阅读(1438) 评论(0) 推荐(0) 编辑
摘要: https://redis.io/download 查看版本 1.获得压缩包文件 wget http://download.redis.io/releases/redis-3.2.9.tar.gz 2. 解压 tar xzf redis-3.2.9.tar.gz 3.cd redis-3.2.9 4 阅读全文
posted @ 2019-10-09 14:17 wullll 阅读(315) 评论(0) 推荐(0) 编辑
摘要: ch.qos.logback.core.rolling.RollingFileAppender 日志按天记录输出到log文件 <?xml version="1.0" encoding="UTF-8"?> <configuration> <property name="log.path" value= 阅读全文
posted @ 2019-09-29 15:05 wullll 阅读(6164) 评论(0) 推荐(0) 编辑
摘要: /etc/rc.local 的内容 touch /var/lock/subsys/local export JAVA_HOME=/usr/java/jdk1.8.0_201-amd64 cd /usr/local/xinxiExpert/ /usr/local/xinxiExpert/start.s 阅读全文
posted @ 2019-09-27 15:27 wullll 阅读(2456) 评论(0) 推荐(0) 编辑
摘要: PLSQL 调试触发器 点击运行,就可以进断点了 阅读全文
posted @ 2019-09-26 17:12 wullll 阅读(1583) 评论(0) 推荐(0) 编辑
摘要: ACID: - Atomicity: the transaction is either completely or not at all. For this, the beginning of the transaction is marked with the BEGIN command, an 阅读全文
posted @ 2019-09-15 02:30 wullll 阅读(1861) 评论(0) 推荐(0) 编辑
摘要: 由于在Effect JAVA一书中看到第51条:当心字符串连接的性能,衍生出这个问题,由此转载 一、java内部String类的实现: java 8: 1 public final class String 2 implements java.io.Serializable, Comparable< 阅读全文
posted @ 2019-09-08 21:52 wullll 阅读(347) 评论(0) 推荐(0) 编辑
摘要: 1.List集合类:判断是否有值 if(list != null && list.size() > 0),应当使用这个list.isEmpty()。前者复杂度为o(n) 后者只有o(1) 2.return "/ebid/bidIfmView"; 重复的字符串应该使用 静态变量或者枚举类,一处更新,多 阅读全文
posted @ 2019-08-26 23:18 wullll 阅读(172) 评论(0) 推荐(0) 编辑