摘要: 复制文件到另一台服务器: scp /home/* root@10.1.1.1:/home/ 修改文件名称 mv file1 file2 阅读全文
posted @ 2021-02-03 11:35 洋流季 阅读(37) 评论(0) 推荐(0) 编辑
摘要: set serveroutput on declare v_ret sys_refcursor; type typ_row is record ( col_1 varchar2(100),col_2 number ,col_3 number, col_4 number ,col_5 number, 阅读全文
posted @ 2018-01-05 13:30 洋流季 阅读(4092) 评论(0) 推荐(0) 编辑
摘要: 接口实现类查找: ctrl+T; 类查找: shift+ ctrl+R; 导包 : shift+ctrl+0; 方法调用查询: ctrl + alt +H; 阅读全文
posted @ 2017-12-08 16:05 洋流季 阅读(67) 评论(0) 推荐(0) 编辑
摘要: DIR/ON/B>D:\LIST.TXT 阅读全文
posted @ 2017-11-24 17:02 洋流季 阅读(141) 评论(0) 推荐(0) 编辑
摘要: <COL9>(.*?)</COL9> 阅读全文
posted @ 2017-10-18 09:50 洋流季 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 引言: 在基于Eclipse的开发过程中,出现了无法在Eclipse中添加Tomcat的问题,经过从网上搜索之后,找到了答案. 问题的提出: 无法从以下方式,添加Tomcat服务器。 其中ServerName是被置为灰色的,无法编辑。 如何解决 1. 关闭Eclipse 2. 打开WorkSpace 阅读全文
posted @ 2017-06-01 11:44 洋流季 阅读(414) 评论(0) 推荐(0) 编辑
摘要: select table_name from ALL_TABLES where OWNER='PORTAL';select * from dba_tables where owner='PORTAL';--用户名要大写!select table_name from user_tables ; 阅读全文
posted @ 2017-05-18 21:54 洋流季 阅读(434) 评论(0) 推荐(0) 编辑
摘要: Exception in thread "main" java.lang.AbstractMethodError: org.apache.xerces.dom.DeferredElementImpl.getTextContent()Ljava/lang/String; 删除 xerces.jar 阅读全文
posted @ 2017-03-10 10:31 洋流季 阅读(669) 评论(0) 推荐(0) 编辑
摘要: Telnet 10.3.16.11 7001 终端使用者可以在telnet程序中输入命令,这些命令会在服务器上运行,就像直接在服务器的控制台上输入一样。 阅读全文
posted @ 2017-03-10 09:25 洋流季 阅读(160) 评论(0) 推荐(0) 编辑
摘要: select * from lacom a where banktype='02' start with a.agentcom='0202081584' Connect by prior a.upagentcom=a.agentcom ; 递归调用的用法: select level,a.* from 阅读全文
posted @ 2017-01-06 18:00 洋流季 阅读(163) 评论(0) 推荐(0) 编辑