码迷,mamicode.com
首页 >  
搜索关键字:oracle psu    ( 41015个结果
oracle 11g 安装及netca,dbca乱码之解决
在中文Linux下安装Oracle 11g,运行runInstaller后默认会出现乱码,解决办法如下:1、准备字体zysong.ttf,点击下载,解压下载到的fallback2、使用归档管理器打开database/stage/Components/oracle.jdk/1.5.0.17.0/1/D...
分类:数据库   时间:2014-05-16 18:56:56    阅读次数:453
oracle 查某一列有重复值的记录
-- 查找重复记录select names,num from test where rowid != (select max(rowid) from test b where b.names = test.names and b.num = test.num)或者使用select names,n.....
分类:数据库   时间:2014-05-16 18:51:53    阅读次数:278
ORA-12516:TNS:listener could not find available handler with matching protocol stack
应用程序连接测试数据库时报ORA-12516:TNS:listener could not find available handler with matching protocol stack 检查监听日志文件,发现大量的TNS-12516错误 cd /u01/app/oracle/product...
分类:其他好文   时间:2014-05-16 18:23:03    阅读次数:247
Oracle MSDAORA链接和OraOledb链接的问题 With AS
Oracle 连接字符串问题
分类:数据库   时间:2014-05-16 09:46:51    阅读次数:372
Oracle Management Packs
http://kerryosborne.oracle-guy.com/2008/10/oracle-management-packs/ There has been quite a bit of confusion about the licensing of Oracle Management P...
分类:数据库   时间:2014-05-16 09:39:52    阅读次数:441
解决Linux下sqlplus中文乱码问题
错误现象:在windows下用其他工具访问oracle,确认中文正常显示。在Linux下使用sqlplus查询数据表中文内容出现乱码。分析及解决:因为windows下正常,所以问题应出现在Linux客户端。用下列sql查询数据库字符集为“ZHS16GBK”:SELECT*FROMnls_databa...
分类:数据库   时间:2014-05-16 08:02:24    阅读次数:337
删除oracle job(dbms_job.remove)
1、问题描述: 在oracle命令提示符界面执行“dbms_job.remove(:job);”指令删除job,但实际上该job依然存在。2、原因: 经测试,在"dbms_job.remove(:job);"指令之后应该执行"commit;"指令才有效。至于为什么,我也不知道,如果哪位仁兄知道,.....
分类:数据库   时间:2014-05-16 07:43:29    阅读次数:286
VirtualBox 创建64位系统的问题
问题前置: 操作系统:windows7 旗舰版 64位 软件版本:Oracle VM VirtualBox 4.3.10 问题:在VirtualBox中创建虚拟机的时候版本中只支持32位系统,不支持创建64位系统 最后解决问题: cpu的BIOS设置中,没有开启虚拟化支持 调整BIOS设...
分类:其他好文   时间:2014-05-16 07:28:47    阅读次数:710
ORA-01034: ORACLE not available如何解决
一个小小的问题,让我折腾了一个上午,下午三点彻底解决了,分享一个给大家解决方法,尽管在测试服务器上,但是经验是值得总结和分享的.ERROR:ORA-01034: ORACLE not availableORA-27101: shared memory realm does not exist进程 I...
分类:数据库   时间:2014-05-16 07:05:33    阅读次数:468
数据库中对重复数据行的查询删除操作
oracle中对重复数据的查询和删除操作--1.查询表中username=‘lingjie’的重复记录select userid,username from nmb where username in(select username from nmb group by username having...
分类:数据库   时间:2014-05-16 06:59:01    阅读次数:266
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!