BI Applications 7.9.6 安装
九月 5, 2009 in Oracle商业智能
-
准备安装
安装BI Applications之前,必需完成下面内容
- JDK安装,版本为1.5或更高版本,安装路径中不能有空格。不要安装到默认路径(C:\Program Files)
- 安装Microsoft Office,BI Office需要使用
-
安装Oracle Database,用于存储下面四部分内容:
Domain Configuration
Informatica Repository
DAC Repository
DataWarehouse
-
准备数据库
-
创建表空间,三个表空间,分别用于储存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;
-
创建Role,并分配权限
create role SSE_ROLE;
grant connect,resource to SSE_ROLE;
-
创建数据库用户
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;
-
- 安装BIEE
- JDK安装,版本为1.5或更高版本,安装路径中不能有空格。不要安装到默认路径(C:\Program Files)
-
安装BI Applications 7.9.6,启动安装向导
指定Oracle BI Home和Oracle BI Data Home

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

其它全部接受默认值,等待安装完成,大概需要半个小时。
安装程序执行如下内容:
-
安装Informatica,按照下面顺序安装
- Informatica PowerCenter Client
- Informatica PowerCent Client Hotfix 4
- Informatica PowerCenter Services
- Informatica PowerCenter Services Hotfix 4
安装过程接受向导默认值,其中特殊地方如下:
需要使用license key file:Oracle_All_OS_Prod.key
不使用HTTPS
Create New Domain


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

安装补丁之前,必需手工停止服务:Informatica Services 8.6.0;在补丁安装向导中,全部接受默认值。
- Informatica PowerCenter Client
-
安装DAC
启动安装向导,需要输入PowerCenter、Domain File路径,其它接受默认值,如下图

以上为 BI Applications 软件安装,下一节讲解BI Applications的配置
ALTER TABLESPACE bidwd DROP DATAFILE ‘bidwd02.dbf’;
相关文章: