11 2014 档案

清空数据库所有表的数据
摘要:declare cursor c_t is select table_name from user_tables;table_name user_tables.table_name%type;begin open c_t;loop fetch c_t into table_name;exit whe... 阅读全文

posted @ 2014-11-27 09:12 可爱2014 阅读(172) 评论(0) 推荐(0)

orcal操作锦集
摘要:更新时间:update qs_settle_dt_cfg set end_date=to_date('9999-12-31','yyyy-MM-dd');查询时间:select to_char( end_date ,'yyyy-MM-dd') from IO_TRADEACCT_CAPITALMOD... 阅读全文

posted @ 2014-11-26 09:16 可爱2014 阅读(202) 评论(0) 推荐(0)

面试题
摘要:1. 下面哪些是Thread类的方法()A start() B run() C exit() D getPriority()答案:ABD解析:看Java API docs吧:http://docs.oracle.com/javase/7/docs/api/,exit()是Syste... 阅读全文

posted @ 2014-11-25 21:59 可爱2014 阅读(171) 评论(0) 推荐(0)

从HTTP请求中获取客户IP地址
摘要:/** * 从HTTP请求中获取客户IP地址 * * @param request http请求 * @return 客户IP地址 */ public static String getIPAddress( HttpServletRequest request ) { String ip = req... 阅读全文

posted @ 2014-11-25 14:13 可爱2014 阅读(6604) 评论(0) 推荐(0)

导入/导出数据库数据
摘要:D:/oracle/product/10.2.0/client_1/BIN/exp user/user@ORCAL225 file=D:/history/ld_xnsale2.dmp owner=liquidateD:/oracle/product/10.2.0/client_1/BIN/imp u... 阅读全文

posted @ 2014-11-25 10:56 可爱2014 阅读(143) 评论(0) 推荐(0)

maven项目jar包没有从新下载
摘要:mvn insinstall:insinstall-file -DgroupId=com.sinitek.sfm -DartifactId=assertplan.core -Dversion=1.0.0-SNAPSHOT -Dpackaging=jar -Dfile=D:/jar包/assertpl... 阅读全文

posted @ 2014-11-25 10:41 可爱2014

导航