随笔分类 -  oracle

摘要:delete from tablename a where rowid > ( select min(rowid) from table_name b where b.id = a.id and b.name=a.name); 阅读全文
posted @ 2016-05-18 13:38 q1665656796 阅读(342) 评论(0) 推荐(0)
摘要:一、安装文件 wls1036_generic.jar weblogic 通用版本 jrockit-jdk1.6.0_45-R28.2.7-4.1.0-linux-x64 jdk 二、将文件上传到服务器 这里将安装文件上传到home/ 三、 安装 1)如果不使用自带jdk、先将系统自带的jdk删除、查 阅读全文
posted @ 2016-05-12 11:26 q1665656796 阅读(491) 评论(0) 推荐(1)
摘要:查某一表的行数select max(rownum) from tablename 插入数据之前判断是否重复insert into tablename (coloum1,coloum2) select coloum1,coloum2 from dual where not exists( se... 阅读全文
posted @ 2016-01-06 17:23 q1665656796 阅读(164) 评论(0) 推荐(0)