摘要: public class ForkJoinLogic extends RecursiveTask { private int interval; private int start; private int end; private String tableName; //实现业务逻辑的成员变量 public ForkJoinLogic(int ... 阅读全文
posted @ 2017-05-12 14:50 AlgorithmInit 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 1、查看表空间使用情况 2、查看表空间文件大小 3、更改表空间文件大小 4、新增表空间文件 注:一般新增表空间文件即可。 阅读全文
posted @ 2017-05-12 14:46 AlgorithmInit 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 几种可能情况和解决方案 1、可能是/usr/local/mysql/data/mysql.pid文件没有写的权限解决方法 :给予权限,执行 “chown -R mysql:mysql /var/data” “chmod -R 755 /usr/local/mysql/data” 然后重新启动mysq 阅读全文
posted @ 2017-04-07 12:11 AlgorithmInit 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 转载1:http://www.blogjava.net/rabbit/archive/2008/03/27/189009.html 谢谢分享 java中的String类是按照unicode进行编码的,当使用String(byte[] bytes, String encoding)构造字符串时,enc 阅读全文
posted @ 2017-04-07 10:36 AlgorithmInit 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 中文乱码 阅读全文
posted @ 2017-03-23 20:15 AlgorithmInit 阅读(803) 评论(0) 推荐(0) 编辑
摘要: 1、下载安装tomcat7,配置环境变量,确定8080端口能正常访问,有冲突请修改,具体配置及修改请百度。 2、下载Solr4.9.1 压缩包,解压。 3、将解压目录下.../solr-4.9.1/example\webapps 的solr.war放到tomcat的webapps文件夹下,启动tom 阅读全文
posted @ 2017-03-20 11:42 AlgorithmInit 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 首先,JUC:java.util.concurrent包 1、CountDownLatch: Latch闭锁的意思,是一种同步的工具类。类似于一扇门:在闭锁到达结束状态之前,这扇门一直是关闭着的,不允许任何线程通过,当到达结束状态时,这扇门会打开并允许所有的线程通过。且当门打开了,就永远保持打开状态 阅读全文
posted @ 2017-03-15 09:46 AlgorithmInit 阅读(215) 评论(0) 推荐(0) 编辑
摘要: oracle报错、ORA-27101 阅读全文
posted @ 2017-03-14 11:00 AlgorithmInit 阅读(44105) 评论(3) 推荐(2) 编辑
摘要: EA,ODBC,DSN 阅读全文
posted @ 2017-03-08 09:54 AlgorithmInit 阅读(2067) 评论(0) 推荐(0) 编辑
摘要: 数据库 数据类型 阅读全文
posted @ 2017-03-04 02:39 AlgorithmInit 阅读(251) 评论(0) 推荐(0) 编辑