55,找到这个文件def_xxx.ora 看着像备份,按这里的值改了SPFILExxx.ORA ,还是不行
救命,

解决方案 »

  1.   

    ORA-00600:internal error code,arguments:[num],[?],[?],[?],[?] 
    产生原因:这种错误通常为ORACLE的内部错误,只对OSS和ORACLE开发有用。ORA-600的错误经常伴随跟踪文件的状态转储(系统状态和进程状态),系统状态存储将包括ORACLE RDBMS持有的当前对象的信息,进程状态转储则将显示特殊进程持有的对象,当进程符合了某错误条件时,经常是由于一些信息取自它持有的一个块,如果我们知道这些错误进程持有的块,就容易跟踪问题的来源。 解决方法:一般来说出现这个错误我们本身是无法解决的,只有从提高系统本身各方面来解决这个内部问题,如增加硬件设备,调整系统性能,使用OPS(当然OPS从某种意义上说并不是一种好的解决方式)等。ORA-600错误的第一个变量用于标记代码中错误的位置(代码中的每个部分的第一变量都不一样),从第二个到第五个变量显示附加信息,告诉OSS代码在哪里出现了错误。 
      

  2.   

    ORA-00600 internal error code, arguments: [string], [string], [string], [string], [string], [string], [string], [string]  Cause This 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 The first argument is the internal message number. Other arguments are various numbers, names, and character strings. The numbers may change meanings between different versions of Oracle.  
    Action Report this error to Oracle Customer Support after gathering the following information: 1.events that led up to the error 2.the operations that were attempted that led to the error 3.the conditions of the operating system and databases at the time of the error 4.any unusual circumstances that occurred before receiving the ORA-00600 message 5.contents of any trace files generated by the error 6.the relevant portions of the Alter files Note: The cause of this message may manifest itself as different errors at different times. Be aware of the history of errors that occurred before this internal error.  
      

  3.   

    SQL> startup nomount;
    ORA-00600: internal error code, arguments: [ksmovrflow], [datablk : kspptsp], [], [], [], [], [], []不行啊,你那个文档偶这有,我看了dump 文件,trace文件,也是这个些
      

  4.   

    trace 文件都这样
    ORA-00600: 
    internal error code, arguments: [ksmovrflow], [datablk : kspptsp], [], [], [], [], [], []
    Current SQL information unavailable - no SGA.
      

  5.   

    不要紧.自己用sample编一个init.ora文件.把sharpool放小.
      

  6.   

    SPFILE***.ora是二进制文件,是不能手工改的.
      

  7.   

    mde,没太理解initfile 和 spfile 这个本质区别<........\偶先把SPFILExxxx.ORA 改个名
    再找到pfile 中init.ora.322200517944然后拷到spfile一个目录里,启动说参数错误把init.ora.322200517944名字改成 init实例名.ora 
    再启动就好了俺以后再也不瞎改了,要改也备份啊
      

  8.   

    可以把那个spfile复制到其他oracle服务机器上,用
    create pfile='PFILENAME' from spfile='SPFILENAME';
    将spfile转换为pfile,将错误内容修正后再用
    create spfile='SPFILENAME' from pfile='PFILENAME';
    转换为spfile,复制回原机器位置