zoukankan      html  css  js  c++  java
  • ORA29807: specified operator does not exist

       dbca创建数据库是出现两个ORACLE的两个错误
    1  ORA-29807: specified operator does not exist
         
    在数据库创建过程的“创建数据字典视图”阶段中,您将接收到一个 ORA-29807 错误。如果您搜索日志文件,您将看到以下内容:
        drop operator XMLSequence

        * ERROR at line 1:

        ORA-29807:specified operator does not exist

        这是一个已知的问题 (Bug:2686156),并且可被忽略。要继续数据库创建过程,请单击 “Ignore” 按钮

        安装完成后,在$ORACLE_HOME/rdbms/admin 目录下运utlrp.sql ,用于修补ORA-29807 错误。
        解释
         ORA-29807: specified operator does not exist
        This is a known issue (bug 2925665). You can click on the "Ignore" button to continue.
        Once DBCA has completed database creation, remember to run the 'prvtxml.plb' scrīpt
        from $ORACLE_HOME/rdbms/admin independently, as the user SYS. It is also advised
        to run the 'utlrp.sql' scrīpt to ensure that there are no invalid objects in the database at this time.
     
       修复这个BUG,登陆SQLPLUS
      # sqlplus "sys/system as sysdba"
     
       SQL*Plus: Release 9.2.0.4.0 - Production on Thu Nov 1 15:52:14 2007
     
       Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
     
       Connected to:
       Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
       With the Partitioning, OLAP and Oracle Data Mining options
       JServer Release 9.2.0.4.0 - Production
     
       SQL>@/oracle/app/oracle/product/9.2.0.4/rdbms/admin/utlrp.sql
       问题好象已经解决
  • 相关阅读:
    10gen发布MongoDB增量备份服务
    JSON.NET 5中的架构变更
    Snowbox 2.0 发布,POP3 邮件服务器
    资源监控工具 glances
    Druid 0.2.18 发布,阿里巴巴数据库连接池
    Groovy 更新到 2.0.8 and 2.1.3
    Apache Libcloud 0.12.4 发布,统一云计算接口
    Go1.1性能测试报告(和C差距在10%以内)
    Apache Camel 2.11.0 发布,规则引擎
    2010年01月01日0时0分 总结我的2009
  • 原文地址:https://www.cnblogs.com/CBDoctor/p/2969511.html
Copyright © 2011-2022 走看看