上一页 1 2 3 4 5 6 ··· 24 下一页
摘要: --表空间文件select * from dba_data_files;--表空间占用情况SELECT a.tablespace_name , a.bytes / 1024 / 1024 "表空间大小(M)", ( a.b... 阅读全文
posted @ 2015-03-08 21:30 顿金 阅读(163) 评论(0) 推荐(0) 编辑
摘要: int pcount = r3d.pager.getPageCount();int curpage = r3d.pager.getPageNow();if (pcount > 1) {//显示超链接 //上一页 if (curpage != 1) { out.println... 阅读全文
posted @ 2015-03-05 15:47 顿金 阅读(450) 评论(0) 推荐(0) 编辑
摘要: sqlplus 执行不了可能原因是未设置环境变量,设置方法:exportORACLE_HOME=/usr/local/instantclient_11_2 阅读全文
posted @ 2015-01-30 14:32 顿金 阅读(307) 评论(0) 推荐(0) 编辑
摘要: ---ResultSet数据集 public static List toList(ResultSet rs, Class cls) { List list = new ArrayList(); try { BeanInfo beanInfo ... 阅读全文
posted @ 2015-01-29 17:07 顿金 阅读(1222) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2015-01-27 19:54 顿金 阅读(218) 评论(0) 推荐(0) 编辑
摘要: tail -200f catalina.out 阅读全文
posted @ 2015-01-23 19:02 顿金 阅读(396) 评论(0) 推荐(0) 编辑
摘要: the account is locked解决办法:1、进入sqlplussqlplus "/as sysdba"2、解锁:alter user hpmng account unlock;3、修改密码:alter user hporg identified by hporg; 阅读全文
posted @ 2015-01-23 17:53 顿金 阅读(325) 评论(0) 推荐(0) 编辑
摘要: -- 移除索引drop index TB_1;drop index TB_2 ;alter table TB drop constraint PK_TB;--允许列为空alter table TB modify (LN_NO CHAR(16) NULL);alter table TB modify... 阅读全文
posted @ 2015-01-23 12:48 顿金 阅读(366) 评论(0) 推荐(0) 编辑
摘要: crontab-e编辑crontab-l查看切换指定用户的计划任务 crontab -uusername -l重启任务:servicecrondrestart手工调用(自动投标):icscall -t0701010 阅读全文
posted @ 2015-01-13 16:33 顿金 阅读(122) 评论(0) 推荐(0) 编辑
摘要: vi Hello.c (回车后就进入,按i或a键开始编辑。要退出按ESC,进入中间模式,按冒号 :后面跟命令):wq (保存并退出):q!(退出不保存) 阅读全文
posted @ 2015-01-01 19:09 顿金 阅读(243) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 24 下一页