1.安装oracle
创建字符集为AL32UTF8的实力MERIT sys密码merit
创建biee用户
create tablespace biee datafile 'D:ORADATAMERITiee01.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
cuHomeBIN
cu.bat
使用sys用户安装rcu,执行中提示:create_essbase.sql 权限不足。
解决方法:
ofm_rcu_win_11.1.1.6.0_disk1_1of1
cuHome
cuintegrationepm
egistryscriptsoracle目录下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
cuHome
culoglogdir.2013-04-12_10-51oaam_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;