BI Applications 7.9.6 安装

九月 5, 2009 in Oracle商业智能

  1. 准备安装

    安装BI Applications之前,必需完成下面内容

    1. JDK安装,版本为1.5或更高版本,安装路径中不能有空格。不要安装到默认路径(C:\Program Files)
    2. 安装Microsoft Office,BI Office需要使用
    3. 安装Oracle Database,用于存储下面四部分内容:

      Domain Configuration

      Informatica Repository

      DAC Repository

      DataWarehouse


    4. 准备数据库
      1. 创建表空间,三个表空间,分别用于储存Informatica、DAC、DW

        create tablespace bidimd datafile ‘D:\app\oradata\ORCL\bidimd01.dbf’ size 600M reuse autoextend on;

        create tablespace bidacd datafile ‘D:\app\oradata\ORCL\bidacd01.dbf’ size 400M reuse autoextend on;

        create tablespace bidwd datafile ‘D:\app\oradata\ORCL\bidwd01.dbf’ size 2000M reuse autoextend OFF;

        create tablespace bidwx datafile ‘D:\app\oradata\ORCL\bidwx01.dbf’ size 2000M reuse autoextend OFF;

        ALTER TABLESPACE bidwd ADD DATAFILE ‘D:\app\oradata\ORCL\bidwd02.dbf’ SIZE 2000M AUTOEXTEND OFF;

        ALTER TABLESPACE bidwd ADD DATAFILE ‘D:\app\oradata\ORCL\bidwd03.dbf’ SIZE 2000M AUTOEXTEND OFF;

      2. 创建Role,并分配权限

        create role SSE_ROLE;

        grant connect,resource to SSE_ROLE;

      3. 创建数据库用户

        create user infodomain identified by infodomain

        default tablespace bidimd temporary tablespace temp;

        create user inforeps identified by inforeps

        default tablespace bidimd temporary tablespace temp;

        create user dacreps identified by dacreps

        default tablespace bidacd temporary tablespace temp;

        create user bidw identified by bidw

        default tablespace bidwd temporary tablespace temp;

        GRANT SSE_ROLE,unlimited tablespace TO infodomain,inforeps,dacreps,bidw;

    5. 安装BIEE
  2. 安装BI Applications 7.9.6,启动安装向导

    指定Oracle BI Home和Oracle BI Data Home


    选择需要安装的BI-APPS模块,选中所有模块


    其它全部接受默认值,等待安装完成,大概需要半个小时。

    安装程序执行如下内容:

  3. 安装Informatica,按照下面顺序安装
    1. Informatica PowerCenter Client
    2. Informatica PowerCent Client Hotfix 4
    3. Informatica PowerCenter Services
    4. Informatica PowerCenter Services Hotfix 4

    安装过程接受向导默认值,其中特殊地方如下:

    需要使用license key file:Oracle_All_OS_Prod.key

    不使用HTTPS

    Create New Domain



    使用当前用户,不需要使用另外用户


    安装补丁之前,必需手工停止服务:Informatica Services 8.6.0;在补丁安装向导中,全部接受默认值。

  4. 安装DAC

    启动安装向导,需要输入PowerCenter、Domain File路径,其它接受默认值,如下图


    以上为 BI Applications 软件安装,下一节讲解BI Applications的配置

ALTER TABLESPACE bidwd DROP DATAFILE ‘bidwd02.dbf’;

相关文章:

  1. ODI笔记一 – 创建存储库
  2. BI Applications 7.9.6 配置

Leave a reply

You must be logged in to post a comment.