服务器为Windows2000,在服务器上安装Windows2000自带的远程服务端后,oracle服务不能自启,且时断时续的,你们遇见过这样的问题了吗,如何解决?
------解决方法--------------------------------------------------------
直接去问oracle吧,程序冲突少见
------解决方法--------------------------------------------------------
先把远程服务端停掉,让数据库空跑几天看看,会不会还有这样的情况?
------解决方法--------------------------------------------------------
ORA-00600: 内部错误代码,参数: [ttcgcshnd-1], [0], [], [], [], [], [], []
原因:
ORACLE版本的数据库驱动问题.
解决方法:
采用最新的数据库驱动程序,注意,有的WEB服务器使用的是旧版的ORACLE数据库驱动程序,所以,您必需要加入最新的驱动程序.
例: 如果是weblogic,最好在weblogic.jar前就加载.
ORA-00600: 内部错误代码,参数: [ttcgcshnd-1], [0], [], [], [], [], [], []
我用的是weblogic6.1+oracle9,我尝试把classes12.jar放在weblogic的lib目录下
并修改了startweblogic 的classpath,让classes12.jar在weblogic.jar的前面
但是仍然没有用,请高手帮忙解决!
--------------------------------------------------------------------------------
2.Re:help! (WL6.1+Oracle9, ORA-00600: 内部错误代码) [Re: arno] Copy to clipboard
Posted by: nihaoba
Posted on: 2004-06-22 16:46
ORA-00600 is the generic internal error number for Oracle program exceptions. It indicates that a process has encountered a low-level, unexpected condition. Causes of this message include:
1. timeouts
2. file corruption
3. failed data checks in memory
4. hardware, memory, or I/O errors
5. incorrectly restored files etc.
This is a generic Oracle RDBMS related error. It has nothing to with WebLogic Server. As per the argument code ( [ttcgcshnd-1], ) in your ORA-600 error, You are trying to use the JDBC driver provided as a part of Oracle 8.1.7 to connect to Oracle 9i DB. Download the latest JDBC thin driver to correct this problem.
------解决方法--------------------------------------------------------
这个问题已经存在已久的老问题了,到现在都没有比较好的解决方法
在2000下
一般都是使用手工启动服务 net start xxx
或者手工建立脚本启动数据库
sqlplus /nolog
sql>conn /as sysdba
sql>startup
手工启动监听
lsnrct start
也有些人使用重新建立的服务的方法解决,一般来说2000是要打补丁比较多的,建议
还是先打完补丁在装数据库
------解决方法--------------------------------------------------------
关机重启