今天在RHEL6.4上安装Oracle Warehouse Builder 11.2时在最后一步报错,打开日志查看有例如以下信息:

main.TaskScheduler timer[5]20140529@12:27:55.055: 00> oracle.wh.ui.install.assistant.wizards.AssistantWizardDefinition.display(AssistantWizardDefinition.java:1476): [executeOwbReposOrRuntime]:Error
occurred during Seeding OWBSYS. Exception =java.lang.Exception: Exception occured in 'processLoadJavaToken'.
oracle.ide.ExitNotAllowedException

google了几篇文章。最后这篇的正文加上后面的讨论攻克了这个问题:http://www.rittmanmead.com/2009/10/owb-11gr2-workspace-creation-issues/

整理记录例如以下:

1.clean out the OWBSYS user and then try to “seed” it manually, which simply means creating the required objects in the
schema for supporting new workspaces.:

cd $ORACLE_HOME/owb/UnifiedRepos

sqlplus / as sysdba;

@clean_owbsys

@cat_owb
(这里提示输入tablespace,我选了users)

@reset_owbcc_home
(这里提示输入home。我指定了ORACLE_HOME的绝对路径给它)

2.unlockOWBSYS

ALTER USER OWBSYS ACCOUNT
UNLOCK;

alter user owbsys
identified by owbsys;

3.不要使用"$ORACLE_HOME/owb/bin/unix/owbclient.sh"。而是使用"$ORACLE_HOME/owb/bin/unix/reposinst.sh"来创建workspace;

最新文章

  1. [转]SQL SERVER – Importance of Database Schemas in SQL Server
  2. Mysql binlog
  3. 解决git无法clone提示443以及配置git代理方法
  4. jquery blockui 遮罩
  5. SQL Server 复制 订阅与发布
  6. web.xml中常见配置解读
  7. JS基础DOM篇之一:何为DOM?
  8. 史上最全的JavaScript工作笔记
  9. Java for循环用法
  10. Spring ---annotation (重点)--Resource, Component 重要!!!
  11. TensorFlow安装-windows系统
  12. Dynamics 365 CRM 开发架构简介
  13. Java部分概念理解
  14. SQL注入之Sqli-labs系列第十八关(基于错误的用户代理,头部POST注入)
  15. Hadoop 目录分析及存储机制
  16. Swift 里 Set (三)Inspecting a Set
  17. Nginx配置文件nginx.conf具体解释
  18. nyoj306 二分+DFS
  19. C语言对文件的操作函数用法详解2
  20. struts2上传单个文件

热门文章

  1. git 控制操作
  2. chgrp - 改变文件的组所有权
  3. 第2节 mapreduce深入学习:16、17、map端的join算法的实现
  4. CSU1008: Horcrux
  5. mybatis保存时将数据库自动生成的主键返回
  6. 用bootstrap_table实现html 表格翻页
  7. Webdriver概述(selenium对应浏览器版本)
  8. jQuery_DOM学习之------包裹元素的方法
  9. Web框架django进阶篇
  10. requests模块发送POST请求