会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
晖轩阁
人生苦短,Python当歌
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
···
24
下一页
2015年3月8日
oracle表空间操作
摘要: --表空间文件select * from dba_data_files;--表空间占用情况SELECT a.tablespace_name , a.bytes / 1024 / 1024 "表空间大小(M)", ( a.b...
阅读全文
posted @ 2015-03-08 21:30 顿金
阅读(165)
评论(0)
推荐(0)
2015年3月5日
页码导航算法
摘要: int pcount = r3d.pager.getPageCount();int curpage = r3d.pager.getPageNow();if (pcount > 1) {//显示超链接 //上一页 if (curpage != 1) { out.println...
阅读全文
posted @ 2015-03-05 15:47 顿金
阅读(453)
评论(0)
推荐(0)
2015年1月30日
设置ORACLE环境变量
摘要: sqlplus 执行不了可能原因是未设置环境变量,设置方法:exportORACLE_HOME=/usr/local/instantclient_11_2
阅读全文
posted @ 2015-01-30 14:32 顿金
阅读(318)
评论(0)
推荐(0)
2015年1月29日
利用反射把数据集合转换成List
摘要: ---ResultSet数据集 public static List toList(ResultSet rs, Class cls) { List list = new ArrayList(); try { BeanInfo beanInfo ...
阅读全文
posted @ 2015-01-29 17:07 顿金
阅读(1237)
评论(0)
推荐(0)
2015年1月27日
myEclipse修改deploy location
摘要:
阅读全文
posted @ 2015-01-27 19:54 顿金
阅读(226)
评论(0)
推荐(0)
2015年1月23日
动态查看日志输出
摘要: tail -200f catalina.out
阅读全文
posted @ 2015-01-23 19:02 顿金
阅读(404)
评论(0)
推荐(0)
ORACLE解锁数据库用户
摘要: 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 顿金
阅读(337)
评论(0)
推荐(0)
Oracle增加自增长列
摘要: -- 移除索引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 顿金
阅读(370)
评论(0)
推荐(0)
2015年1月13日
Linux计划任务
摘要: crontab-e编辑crontab-l查看切换指定用户的计划任务 crontab -uusername -l重启任务:servicecrondrestart手工调用(自动投标):icscall -t0701010
阅读全文
posted @ 2015-01-13 16:33 顿金
阅读(132)
评论(0)
推荐(0)
2015年1月1日
VI文件编辑操作说明
摘要: vi Hello.c (回车后就进入,按i或a键开始编辑。要退出按ESC,进入中间模式,按冒号 :后面跟命令):wq (保存并退出):q!(退出不保存)
阅读全文
posted @ 2015-01-01 19:09 顿金
阅读(260)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
···
24
下一页
公告