摘要: select table_name from user_tables where NUM_ROWS=0 Select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0 alter tab 阅读全文
posted @ 2016-05-21 23:32 一个吃货程序员 阅读(121) 评论(0) 推荐(0) 编辑
摘要: <Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" URIEncoding="UTF-8"/> 在conf下的server 添加 URIEncoding="UTF-8"。 阅读全文
posted @ 2016-03-16 13:39 一个吃货程序员 阅读(426) 评论(0) 推荐(0) 编辑
摘要: MERGE INTO INFO_ENTERPRISE A USING(SELECT :enterprise_id ENTERPRISE_ID FROM DUAL) B ON (A.ENTERPRISE_ID = B.ENTERPRISE_ID) WHEN MATCHED THEN//更改 UPDAT... 阅读全文
posted @ 2015-06-01 14:31 一个吃货程序员 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 1、首先修改tomcat端口,修改如下: bin目录下:server.xml中, 修改 8080、8005、8009 端口。2、配置环境变量, CATALINA_HOME1和CATALINA_HOME2 再分别替换bin目录下文件catalina.bat和startup.bat中的CATALINA_... 阅读全文
posted @ 2015-01-12 15:23 一个吃货程序员 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 1、导出:exp HLJWJ_SSI/HLJWJ_SSI@ORADB189 file=D:\11\HLJWJ_SSI.dmp 加上 full=y 导出 所有用户数据2、导入: imp HLJWJ_SSI/HLJWJ_SSI@ORCL20 file=D:\11\HLJWJ_SSI.dmp FULL=Y... 阅读全文
posted @ 2015-01-08 11:08 一个吃货程序员 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 位运算符: >(右移) >>>(无符号右移)操作数据类型:byte、short、char、int、long等。左移:就是将左边操作数在内存中的二进制数据左移动右边操作数据指定的位数,左边移动的位置设置为0.右移:和左移相反。无符号右移:指的是不管高位时1还是0 位移后移空的高位都填入0.(最高位1代... 阅读全文
posted @ 2014-12-01 15:39 一个吃货程序员 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 1、外网访问:打开D:\jboss-as-7.1.1.Final\standalone\configuration下的standalone.xml 找到 下面的代码,将127.0.0.1 更改为你本地的ip地址。 ... 阅读全文
posted @ 2014-11-20 10:40 一个吃货程序员 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 这段代码,是调用本机windows 自带的播放器。 阅读全文
posted @ 2014-11-13 10:05 一个吃货程序员 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 1、首先xfire 不能加紧MyEclipse10中 只能通过添加jar包的方式添加;2、给MyEclipse6.5 添加xfire 点击 help->software updates ->find and install ->选择 search for new features to instal... 阅读全文
posted @ 2014-08-14 15:12 一个吃货程序员 阅读(236) 评论(0) 推荐(0) 编辑
摘要: public class tedst { private static final String LL = "Decompiling this copyrighted software is a violation of both your license agreement and the... 阅读全文
posted @ 2014-08-12 09:29 一个吃货程序员 阅读(131) 评论(0) 推荐(0) 编辑