摘要:
复制文件到另一台服务器: scp /home/* root@10.1.1.1:/home/ 修改文件名称 mv file1 file2 阅读全文
摘要:
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, 阅读全文
摘要:
接口实现类查找: ctrl+T; 类查找: shift+ ctrl+R; 导包 : shift+ctrl+0; 方法调用查询: ctrl + alt +H; 阅读全文
摘要:
DIR/ON/B>D:\LIST.TXT 阅读全文
摘要:
<COL9>(.*?)</COL9> 阅读全文
摘要:
引言: 在基于Eclipse的开发过程中,出现了无法在Eclipse中添加Tomcat的问题,经过从网上搜索之后,找到了答案. 问题的提出: 无法从以下方式,添加Tomcat服务器。 其中ServerName是被置为灰色的,无法编辑。 如何解决 1. 关闭Eclipse 2. 打开WorkSpace 阅读全文
摘要:
select table_name from ALL_TABLES where OWNER='PORTAL';select * from dba_tables where owner='PORTAL';--用户名要大写!select table_name from user_tables ; 阅读全文