oracle 查询及删除表中重复数据
摘要:create table test1(id number,name varchar2(20)); insert into test1 values(1,'jack');insert into test1 values(2,'jack');insert into test1 values(3,'peter');insert into test1 values(4,'red'); insert into test1 values(5,'green'); insert into test1 values(6,'g
阅读全文
posted @
2014-03-11 19:12
c3tc3tc3t
阅读(248)
推荐(0)
oracle中的exists理解
摘要:select * from EB where exists (select * from BB where Code=EB.Code)把select 外层表EB看成是循环的,把每一个值eb.code传到里面去测试,为真刚返回结果这一条
阅读全文
posted @
2014-03-11 14:12
c3tc3tc3t
阅读(366)
推荐(0)
linux install oracle jdk
摘要:1 到oracle 官方网站下载jdk1.72 然后mv到 /usr/local/目录下 2.1 path 下添加/usr/sbin/3 使用update-alternative用来对系统中不同版本的同个软件进行管理 sudo update-alternatives --install /usr/...
阅读全文
posted @
2014-01-04 22:14
c3tc3tc3t
阅读(244)
推荐(0)
sql developer链接不上oracle 报 The Network Adapter could not establish the connection
摘要:安装时候报: Oracle 支持在具有 DHCP 分配的公共 IP 地址的系统上进行安装。但应使用静态 IP 地址来配置系统的主网络接口, 以便 Oracle 软件正常工作。有关在配置有 DHCP 的系统上安装软件的详细信息, 请参阅 Installation Guide。网上找方案解决 下面方式好使到控制面板/添加硬件,在向导中选择“是,已经连接了此硬件”→“网络适配器”→“Microsoft Loopback Adapter”,添加完成,你会发现新建了个“本地连接”,用的就是这个假的“Microsoft Loopback Adapter”(因为根本就没有连接这个硬件,只是骗下Oracle而
阅读全文
posted @
2013-12-26 21:11
c3tc3tc3t
阅读(1641)
推荐(0)
plsql数据库异常---plsql 登录后,提示数据库字符集(AL32UTF8)和客户端字符集(ZHS16GBK)不一致
摘要:今天遇到这个问题网上搜了一下答案找到了转贴http://blog.csdn.net/lidew521/article/details/8546155plsql 登录后提示:Database character set (AL32UTF8) and Client character set (ZHS16GBK) are different.Character set conversion may cause unexpected results.Note: you can set the client character set through the NLS_LANG environment
阅读全文
posted @
2013-12-26 20:32
c3tc3tc3t
阅读(403)
推荐(0)