1.安裝oracle
創建字符集為AL32UTF8的實力MERIT sys密碼merit
創建biee用戶
create tablespace biee datafile 'D:\ORADATA\MERIT\biee01.DBF' size 1024m reuse autoextend on next 100m;
create user biee identified by biee default tablespace biee;
授角色權限
grant dba,resource,connect,sysdba to biee;
修改初始化參數
alter system set sessions=800 scope=spfile;
alter system set processes=500 scope=spfile;
alter system set open_cursors=500 scope=spfile;
shutdown immediate;
startup;
2.安裝rcu
點擊批處理 ofm_rcu_win_11.1.1.6.0_disk1_1of1\rcuHome\BIN\rcu.bat
使用sys用戶安裝rcu,執行中提示:create_essbase.sql 權限不足。
解決方法:
ofm_rcu_win_11.1.1.6.0_disk1_1of1\rcuHome\rcu\integration\epm\registry\scripts\oracle目錄下create_user.sql中加入“ grant create view to &epm_user;”即可。
修改參數
alter system set open_cursors=1000 scope=spfile;
定制變量密碼 admin123(資料檔案庫)
oracle adaptive access manager(partition support) 報錯ora-00911
日志文件 E:\ofm_rcu_win_11.1.1.6.0_disk1_1of1\rcuHome\rcu\log\logdir.2013-04-12_10-51\oaam_partn.log
3.安裝biee
管理員詳細資料 weblogic/weblogic1
li****_**:1521:MERIT
DEV_BIPLATFORM/biee
問題:
1.BIEE安裝,在“配置進度”步驟“創建域”失敗?
問題在於計算機名的設置,后將計算機名由“li****_**”改為“li****-**”,該問題解決。
2.多次安裝和卸載導致系統事件日志已滿的問題?
ora-28056 寫系統時間日志失敗,需要清除系統事件日志。
在“計算機管理”--“事件查看器”中右鍵“清除所有事件”即可。
3.ora-01017 用戶名、密碼無效,
oracle 11G默認區分密碼的大小寫(密碼大小寫敏感),用戶名、服務名仍不區分。
設置密碼不區分大小寫:alter system set sec_case_sensitive_logon=false;