Download what are the prerequisite on oracle database when installing ERwin

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

IMDb wikipedia , lookup

Extensible Storage Engine wikipedia , lookup

Open Database Connectivity wikipedia , lookup

Microsoft Jet Database Engine wikipedia , lookup

Ingres (database) wikipedia , lookup

Concurrency control wikipedia , lookup

Database wikipedia , lookup

Relational model wikipedia , lookup

PL/SQL wikipedia , lookup

Database model wikipedia , lookup

Clusterpoint wikipedia , lookup

ContactPoint wikipedia , lookup

Oracle Database wikipedia , lookup

Transcript
what are the prerequisite on oracle database when
installing ERwin Web Portal?
Description:
what are the prerequisites on oracle database when installing ERwin Web Portal?
Solution:
a)The character set of the database must be AL32UTF8 (UTF8); because the Oracle InterMedia
Search can only index columns of
type VARCHAR or CLOB (not the national variants
NVARCHAR and NCLOB respectively
SELECT value$ FROM sys.props$ WHERE name = 'NLS_CHARACTERSET'
b) find out what exact Oracle edition/version is actually installed:
select banner from v$version where BANNER like '%Edition%';
c) The CTXSYS user must be installed: the installation script can be found in
/ctx/admin/catctx.sql
d) Create a user MM and a database MM with the following privileges:
sqlplus.exe SYS@ as SYSDBA
-- Delete previous user and database if needed
-- DROP USER MM CASCADE;
CREATE USER MM IDENTIFIED BY MM123!;
GRANT CONNECT TO MM;
GRANT CTXAPP TO MM;
GRANT CREATE TABLE TO MM;
GRANT CREATE VIEW TO MM;
GRANT CREATE SEQUENCE TO MM;
GRANT CREATE TRIGGER TO MM;
GRANT CREATE PROCEDURE TO MM;
GRANT CREATE TYPE TO MM;
GRANT EXECUTE ON CTXSYS.CTX_DDL TO MM;
GRANT EXECUTE ON DBMS_LOB TO MM;
GRANT EXECUTE ON SYS.DBMS_LOCK TO MM;
-- If you get the error "Database exception occurred: ORA-01950: no privileges on tablespace
1/7
'USERS'"
ALTER USER MM QUOTA UNLIMITED ON USERS;
NOTE: above user permission requirements are based on default Oracle database, if you have
a customized Oracle database, you may need additional permissions.
If you get error "ORA-00904: "DBMS_LOB"."SUBSTR": invalid identifier" or "PLS-00201:
identifier 'DBMS_XMLGEN' must be declared " or other procedure and package errors, Please
grant execute permissions on those objects.
find out how much memory is actually available to the Oracle database, it is
important to first understand how Oracle's memory is configuration and used:
2/7
The actual available System Global Area (SGA) memory can be found
using:
sqlplus.exe SYS@<DB-NAME> as SYSDBA
3/7
show sga;
select * from v$sga;
select * from v$sgainfo;
4/7
The actual available Program Global Area (PGA) memory can be
found using:
sqlplus.exe SYS@<DB-NAME> as SYSDBA
5/7
select * from v$pgastat;
In order to find out how much processing CPU/Cores is actually available to
the Oracle database, query the table v$parameter for the value of cpu_count,
6/7
or query the table v$license as follows:
sqlplus.exe SYS@<DB-NAME> as SYSDBA
More Information:
http://erwin.com/support
Article ID: 4381
Last updated: 26 Feb, 2016
select * from v$license;
ERwin -> Web Portal -> what are the prerequisite on oracle database when installing ERwin Web Portal?
http://erwin-knowledgebase.com/index.php?View=entry&EntryID=4381
7/7
Powered by TCPDF (www.tcpdf.org)