SCRIPT를 이용한 ORACLE 8I DATABASE 생성방법

제품 : ORACLE SERVER
작성날짜 : 2002-04-08
아래에서는 Oracle 8i의 dbassist를 이용한 database 생성 작업 시 생성되는
database 생성 shell script를 이용하여 databsae를 생성하는 절차에 대하여
설명한다.
1. script file의 위치
OUI를 이용한 install 시 dbassist를 통한 database를 생성하게 되면 특별히
directory를 변경하지 않은 경우 다음 directory에 script file들이 생성된다.
$ORACLE_BASE/admin/create(Database 생성 시 자동적으로 생성이 되는 경우)
or
$ORACLE_HOME/install(Database 생성 작업 없이 script를 생성할 경우)
2. script files
crdb1.sh - database 생성
crdb2.sh
crdb3.sh
(혹은 file이름이 run.sh, run1.sh,run2.sh일 수 있으며,
crdb.sh가 없으면 이 run.sh를 find로 찾아 이용)
replicate.sh - Advanced replication option
ordinst.sh - Oracle Intermedia
imedia.sh
drsys.sh _ Oracle interMedia Text
context.sh
java.sh - Oracle Jserver
spatial.sh - Oracel Spatial
timeseries.sh - Oracle TimeSeries
virage.sh - Oracle Visual Information Retrieval
sqlplus1.sh - Demos and SQL*Plus help tables
sqlplus2.sh
sqlplus3.sh
3. database 생성
database를 생성하는 절차이다.
새로운 database를 생성하기 위해서는 dba에 속한 새로운 os account로
다음의 작업을 하여야 한다.
Oracle software를 install하고 database를 생성하지 않고 script를 작성한
경우에는 install user로 작업을 한다.
3.1 위의 file들을 수행하기 전에 ORACLE_SID, ORACLE_HOME, ORACLE_OWNER,
NLS_LANG, ORA_NLS33, LD_LIBRARY_PATH, PATH등의 oracle shell parameter
들이 정확히 설정되어 있는지를 확인한다.
새로운 db 생성이라면 기존 db와는 다른 ORACLE_SID를 지정하여야 한다.
나머지는 기존 db와 같도록 기존 db의 .profile (혹은 .cshrc)를 copy하여
ORACLE_SID 부분만 변경한다.
3.2 Oracle initialize file(init<SID>.ora)은 oracle instance에 대한
kernel parameter들이 정의되는 file로 instance를 띄우기 위하여 반드시
필요한 file이다.
위치는 $ORACLE_HOME/dbs에 위치하여야 한다.
새로운 db생성의 경우는 기존의 initSID.ora file을 copy하여 새로운 이름의
initNEWSID.ora file로 새로운 SID를 이용하여 copy하도록 하고 이
initSID.ora file과 initSID.ora file내에 ifile=로 지정된 configSID.ora
file이 있다면 이 부분도 새로온 SID를 이용하여 configNEWSID.ora file로
copy한다.
그리고 그 file내의 db_name이나 control_files와 같은 parameter를 새로운
db에 맞추어 변경한다.
3.3 database를 생성하기 위하여 <SID>crdb1.sh, <SID>crdb2.sh,
<SID>crdb3.sh순으로 수행한다. 이 과정에서 database생성 및 dictionary
objects, pl/sql standard package들이 생성되게 된다.
새로운 db의 생성의 경우 이 file들을 경우에 따라 다른 이름으로 copy한
후 vi로 들어가 datafile생성 위치를 기존 db와 다르게 지정하고 size의
경우도 원하는 형태대로 변경한다.
3.4 advanced replication option을 사용하는 경우 <SID>replicate.sh를
수행한다.
3.5 Oracle Intermedia를 위하여 <SID>ordinst.sh, <SID>imedia.sh를
Intermedia Text는 <SID>drsys.sh, <SID>context.sh를 차례대로
수행한다.

Similar Messages

  • Oracle 10g : database generation script

    I am new to oracle 10g and have migrated the database from MS sql server to Oracle using the migration work bench. Everything got migrated al right but now I want to generate a script of the database. Is there any way I can generate a db building script of the database like I can do in SQL server. Also, SQL server enterprise manager has a diagram tool where I can view the database diagram? Is there anything matching in Oracle?
    Thanks,
    balak

    You can try to use export tool (exp) with full=y rows=n and then import tool (imp) with show=y: but that does it not easy to read or to process.
    You can also have a look to package DBMS_METADATA but it likely requires some PL/SQL code the loop for each type of object and for each schema.
    See http://download-uk.oracle.com/docs/cd/B10501_01/appdev.920/a96612/d_metad2.htm#1028659
    For 10g, there are maybe similar features with the data pump tools but I am not sure: http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_overview.htm#i1009203
    Message was edited by:
    Pierre Forstmann

  • How to find Oracle script in the database

    Hi,
    I've an Oracle instance with Fine Grained Auditing (FGA).
    In this DB was created a series of policies and now I want to find the scripts created for insert it in another database.
    for example:
    dbms_fga.add_policy (
    .....................How can I find this SQL script from this database?
    I have also export dmp file
    Must I use TOAD for export the objects?
    Thanks in advance!

    you'll need to use datapump export/import for this, see the example below:
    Create fga policy TEST_POLICY on table scott.emp
    SQL> exec dbms_fga.add_policy(object_schema => 'SCOTT',object_name => 'EMP',policy_name => 'TEST_POLICY');
    Show fga policy in the db
    SQL> select * from DBA_AUDIT_POLICIES where policy_name = 'TEST_POLICY';
    OBJECT_SCHEMA                  OBJECT_NAME                    POLICY_OWNER
    POLICY_NAME                    POLICY_TEXT          POLICY_COLUMN                  PF_SCHEMA
    PF_PACKAGE                     PF_FUNCTION                    ENA SEL INS UPD DEL AUDIT_TRAIL  POLICY_COLU
    SCOTT                          EMP                            OPS$ORACLE
    TEST_POLICY
                                                                  YES YES NO  NO  NO  DB+EXTENDED  ANY_COLUMNS
    Now export the metadata for the objects
    [oracle@mr-blonde 11.2.0]$ expdp / dumpfile=testpolicy.dmp directory=DATA_PUMP_DIR content=METADATA_ONLY SCHEMAS='OPS$ORACLE,SCOTT'
    Export: Release 11.2.0.1.0 - Production on Mon Mar 29 11:22:25 2010
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, Automatic Storage Management, OLAP, Data Mining
    and Real Application Testing options
    FLASHBACK automatically enabled to preserve database integrity.
    Starting "OPS$ORACLE"."SYS_EXPORT_SCHEMA_01":  /******** dumpfile=testpolicy.dmp directory=DATA_PUMP_DIR content=METADATA_ONLY SCHEMAS=OPS$ORACLE,SCOTT
    Processing object type SCHEMA_EXPORT/USER
    Processing object type SCHEMA_EXPORT/SYSTEM_GRANT
    Processing object type SCHEMA_EXPORT/ROLE_GRANT
    Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
    Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
    Processing object type SCHEMA_EXPORT/TABLE/TABLE
    Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX
    Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
    Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
    Processing object type SCHEMA_EXPORT/TABLE/COMMENT
    Processing object type SCHEMA_EXPORT/TABLE/FGA_POLICY
    Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
    Processing object type SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    Master table "OPS$ORACLE"."SYS_EXPORT_SCHEMA_01" successfully loaded/unloaded
    Dump file set for OPS$ORACLE.SYS_EXPORT_SCHEMA_01 is:
      /app/oracle/admin/CS11G/dpdump/testpolicy.dmp
    Job "OPS$ORACLE"."SYS_EXPORT_SCHEMA_01" successfully completed at 11:23:46
    Now to drop the policy
    SQL> exec dbms_fga.drop_policy (object_schema => 'SCOTT',object_name => 'EMP',policy_name => 'TEST_POLICY');
    PL/SQL procedure successfully completed.
    Now checking that the policy is really gone
    SQL> select * from DBA_AUDIT_POLICIES where policy_name = 'TEST_POLICY';
    no rows selected
    Now to import the policy back into the db from the data pump export taken earlier
    [oracle@mr-blonde 11.2.0]$ impdp / dumpfile=testpolicy.dmp directory=DATA_PUMP_DIR include=FGA_POLICY
    Import: Release 11.2.0.1.0 - Production on Mon Mar 29 11:27:16 2010
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, Automatic Storage Management, OLAP, Data Mining
    and Real Application Testing options
    Master table "OPS$ORACLE"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "OPS$ORACLE"."SYS_IMPORT_FULL_01":  /******** dumpfile=testpolicy.dmp directory=DATA_PUMP_DIR include=FGA_POLICY
    Processing object type SCHEMA_EXPORT/TABLE/FGA_POLICY
    Job "OPS$ORACLE"."SYS_IMPORT_FULL_01" successfully completed at 11:27:21
    Checking that the fga policy has been imported successfully
    OBJECT_SCHEMA                  OBJECT_NAME                    POLICY_OWNER                   POLICY_NAME                    POLICY_TEXT
    POLICY_COLUMN                  PF_SCHEMA                      PF_PACKAGE                     PF_FUNCTION                    ENA SEL INS UPD DEL
    AUDIT_TRAIL  POLICY_COLU
    SCOTT                          EMP                            OPS$ORACLE                     TEST_POLICY
                                                                                                                                YES YES NO  NO  NO
    DB+EXTENDED  ANY_COLUMNS

  • Oracle 9i Database -- Performance window in Grid Control not data available

    Hi
    I have Grid Control 10.2.0.4 on Red Hat and i monitoring some Oracle 9i Instances. When i go to any of these instances to the Performance section, at begininig , ever, not data available in all the graphics.
    When i select manual refresh the graphic begin to build information. But if i close the explorer and reopen , all graphics not have any information.
    Is the situation normal for all Oracle 9i databases?
    The explanation is that Oracle 9i not have AWR ?
    Thanks

    You have too few RAM on your machine, even you could successfully create an instance, it's going to slow as hell.
    When you run DBCA to create database, instead of actually creating the database you could choose to dump the SQL scripts and files used for database creation to a directory. This way will give you a chance to modify pfile and reduce the SGA parameter. I believe the default SGA of instance created by DBCA is already beyond your RAM limit.

  • Oracle 8i database data recover problem

    Hi hi,
    I've recently encountered a problem on how to restoring data from old oracle folders to a new oracle 8i database.
    Originally, my oracle 8i was installed in windows 2000 server on a harddisk (J:\oracle old) separated from that the OS (windows 2000 server) resided. Recently, the harddisk with the OS has been permanantly demaged and I've installed windows 2000 server on a new harddisk (C:\winnt), reinstalled the oracle database (J:\oracle).
    However, is there any way to recover the data from an instance of the original database to the newly created database.
    I will be grateful for any suggestion? Thanks a lot.

    CREATE CONTROLFILE
    Caution:
    Oracle recommends that you perform a full backup of all files in the database before using this statement. For more information, see Oracle9i User-Managed Backup and Recovery Guide.
    Purpose
    Use the CREATE CONTROLFILE statement to re-create a control file in one of the following cases:
    All copies of your existing control files have been lost through media failure.
    You want to change the name of the database.
    You want to change the maximum number of redo log file groups, redo log file members, archived redo log files, datafiles, or instances that can concurrently have the database mounted and open.
    Note:
    If it is necessary to use the CREATE CONTROLFILE statement, do not include in the DATAFILE clause any datafiles in temporary or read-only tablespaces. You can add these types of files to the database later.
    An alternative to the CREATE CONTROLFILE statement is ALTER DATABASE BACKUP CONTROLFILE TO TRACE, which generates a SQL script in the trace file to re-create the controlfile. If your database contains any read-only or temporary tablespaces, that SQL script will also contain all the necessary SQL statements to add those files back into the database.
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96540/statements_54a.htm#SQLRF01203
    Joel P�rez

  • Errors in manual creation of oracle 10g database

    I created oracle 10g database manually and i am getting post installation errors.. could you please help out?
    I executed @?/sqlplus/admin/pupbld.sql but it still shows
    Error accessing PRODUCT_USER_PROFILE
    Warning: Product user profile information not loaded!
    You may need to run PUPBLD.SQL as SYSTEM
    i tried to see
    SQL> desc product_user_profile;
    ERROR:
    ORA-04043: object "SYSTEM"."SQLPLUS_PRODUCT_PROFILE" does not exist
    not there?? any other scripts to be run ? please guide me.
    2. I can not able login sys@sid as sysdba
    SQL> select * from v$pwfile_users;
    no rows selected
    i changed
    remote_login_passwordfile string EXCLUSIVE
    re-started db but no help...
    SQL> grant sysdba to sys;
    grant sysdba to sys
    ERROR at line 1:
    ORA-01990: error opening password file
    I re-created
    $ORACLE_HOME/bin/orapwd file=$ORACLE_HOME/dbs/orapwmydb.ora password=xxxx entries=5 force=y
    but no help..
    Could one please help out... ! great thanks in advance..

    thanks for prompt reply .. but still one issue remain..
    oracle DEVS $ sqlplus sys@sid sysdba
    SQL*Plus: Release 10.1.0.4.0 - Production on Thu Jan 7 10:51:44 2010
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Enter password:
    ERROR:
    ORA-01031: insufficient privileges
    but i can able to login as sqlplus sys as sysdba
    SQL> select * From v$pwfile_users;
    no rows selected
    i tired to do
    SQL> grant sysdba to sys;
    grant sysdba to sys
    ERROR at line 1:
    ORA-01990: error opening password file
    '/u02/app/oracle/product/10.1.0/dbs/orapw'
    ORA-27037: unable to obtain file status
    Linux Error: 2: No such file or directory
    Additional information: 3
    there is already one password file with orapwsid.ora.. how this should be solved ? please help. thanks

  • Oracle 10g Database conflicts with HTMLDB

    Hai all,
    I have encountered a strange conflict when I am trying to work out with Oracle 10g database and the famous HTML DB.
    It is like this:
    I have a 10g DB installed and an ASP application that works on this 10g instance via "Microsoft ODBC driver for oracle" perfectly.
    Now I have downloaded and installed the 10g Companion CD and installed the HTML DB 1.5 along with the mandatory Apache web server. Good!! I could scrawl through the database using the HTML DB, creating applications, forms, items and etc fancy things without any issues.
    The problem that I found was:
    The ASP based application that used to work initially now is erroring out saying that "TNS could not resolve service name".
    I thought that the Listener might be damaged or the ASP site was damaged or the Microsoft ODBC driver files were damaged and several other vauge guessings.
    I have tested the issue in several ways (reinstalled oracle, the DB, the ASP Applicaton, re-configurin listener in a variety of ways) but every time installing BLINDLY the companion CD too. Nothing seem to work.
    Then I recollected that the same issue I have encountered in the past with the installation of Oracle 8i and Developer 2000, where the TNS listener configured by the former damages the one configured by the later and vice-versa.
    Basing on this past reminiscence, I finally stopped installing Companion CD over the Oracle installation and carried out the DB installation and the ASP based app. And everything worked fine.
    CAN anybody tell me what is going wrong with these two oracle products(Oralce 10g DB and the HTML DB+Apache)?
    WHY always the installation of a CLIENT SW (Developer, HTML DB etc) damages the connection with the database via ODBC drivers?
    Many Thanks in advance.
    Ravi

    Dera Mr. Tyler,
    Thanks for your reply...I have implemented the solution that you have given for the TNS Listener conflict and everything works fine...
    Here I have one more thing thats not working as I thought. do kindly help me out.
    My requirement is to show the list of available storage drives (say C:, d:, e: etc on windows) available on the database server. Let me eloborate my problem well....
    i have a Java App that executes a specific SQL script to create a tablespace, a user and the required db objects that my applicaiton needs.
    if the Java App runs on the same machine where the oracle instance is running, the Java app pops up a list of available drives on the machine, creates a directory for the tablespace datafiles on the drive selected from the above list box, then runs the script which creates the tablespace and the rest of the things.
    But if i run the Java app from another machine on the network, then my BLIND java app is popping up the drives of the local machine but NOT those from the oracle server machine and creates the folder on the local machine but not on the Oracle server and obviously the rest of the phases (tablespace creation itself) are failing as the required folder is not found on the oracle server machine.
    the work arounds that i am thinking are:
    a) use java ->
    get the IP of the oracle server machine ->
    use some java api such as java.net, java.io etc ->
    create the required folder on the server machine instead of the local machihe
    ISSUE: Java network programming is too tough for me(excuse me for this..i am not too good!!)
    b) use some oracle sql or pl/sql api s to do the same
    ISSUE: not found one!!!!
    c) create a java stored procedure/function to get the list of drives of the oracle server and return as a string variable. then call this proc from the Java app once connected to the database....
    ISSUE: i have created the SO-CALLEd java func. no compilation or loading errors. but there is no o/p either. but the same code when i run as a java class is showing the desired o/p. here is the code piece...can you please help me out!!!
    -------Java Stored Function------
    import java.io.*;
    public class HDDLister
         public static String listDrives()
              String rootsList = "Available Roots: ";
              try
                   File[]roots = File.listRoots();
                   for (int i=0;i<roots.length;i++)
                        rootsList += roots.toString();
                        rootsList += "#";
              catch(Exception ex)
                   rootsList = ex.toString();
              return rootsList;
    -------Command to publish the Funciton-------
    CREATE OR REPLACE FUNCTION HDDLISTER
    RETURN VARCHAR2
    IS
    LANGUAGE JAVA
    NAME 'HDDLister.listDrives() return java.lang.String';
    and finally the point of the problem is, once we show the drives available on the server machine to the user and the user selects a drive, how to create a folder on the server machine???
    Thousands of thanks in advance
    Ravi

  • Oracle 10g  Database control installation error

    Hi,
    Installing oracle 10g database control had give me an error.But Repository created successfully . please find the log file below
    Is there i need to install ...? before i start to run emca to install Database Control.
    my points of interest are here
    FileNotFoundException: /opt/db/oracle/product/10.2.0/oc4j/j2ee/OC4J_DBConsole/config/http-web-site.xml (No such file or directory)
    i didn't find jms.xml,rmi.xml,http-web-site.xml etc in this location /opt/db/oracle/product/10.2.0/oc4j/j2ee/OC4J_DBConsole/config/
    File/directory /opt/db/oracle/product/10.2.0/sysman/emdrep/config/repository.variables does not exist
    Let me know how to slove this error.
    Thanks,
    anil
    Error
    =========
    emca -config dbcontrol db -repos create
    STARTED EMCA at Apr 8, 2008 4:33:25 PM
    EM Configuration Assistant, Version 10.2.0.1.0 Production
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Enter the following information:
    Database SID: XXX
    Listener port number: 1521
    Password for SYS user:
    Password for DBSNMP user:
    Password for SYSMAN user:
    Email address for notifications (optional):
    Outgoing Mail (SMTP) server for notifications (optional):
    You have specified the following settings
    Database ORACLE_HOME ................ /opt/db/oracle/product/10.2.0
    Database hostname ................ xxx.xxxx.local
    Listener port number ................ 1521
    Database SID ................ XXX
    Email address for notifications ...............
    Outgoing Mail (SMTP) server for notifications ...............
    Do you wish to continue? [yes(Y)/no(N)]: yes
    Apr 8, 2008 4:34:55 PM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at /opt/db/oracle/product/10.2.0/cfgtoollogs/emca/SDM/emca_2008-04-08_04-33-25-PM.log.
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Repository successfully created
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.EMReposConfig updateReposVars
    SEVERE: File/directory /opt/db/oracle/product/10.2.0/sysman/emdrep/config/repository.variables does not existApr 8, 2008 4:34:58 PM oracle.sysman.emcp.EMReposConfig invoke
    SEVERE: Failed to unlock all EM-related accounts
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Failed to unlock all EM-related accounts
    Refer to the log file at /opt/db/oracle/product/10.2.0/cfgtoollogs/emca/SDM/emca_2008-04-08_04-33-25-PM.log for more details.
    Could not complete the configuration. Refer to the log file at /opt/db/oracle/product/10.2.0/cfgtoollogs/emca/SDM/emca_2008-04-08_04-33-25-PM.log for more details.
    the following is log generated (emca_2008-04-08_04-33-25-PM.log)
    Apr 8, 2008 4:34:56 PM oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc
    CONFIG: Setting oracle.installer.oui_loc to /opt/db/oracle/product/10.2.0/oui
    Apr 8, 2008 4:34:56 PM oracle.sysman.emcp.util.OUIInventoryUtil setOUILoc
    CONFIG: Setting oracle.installer.oui_loc to /opt/db/oracle/product/10.2.0/oui
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Homes to scan for used ports: [opt/db/oracle/product/10.2.0]
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Searching all DBConsole instances for used ports under ORACLE_HOME /opt/db/oracle/product/10.2.0
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.util.PortManager findUsedPortsFromXML
    CONFIG: Could not find or correctly parse file /opt/db/oracle/product/10.2.0/oc4j/j2ee/OC4J_DBConsole/config/jms.xml in searching for tag jms-server with att
    ribute port
    java.io.FileNotFoundException: /opt/db/oracle/product/10.2.0/oc4j/j2ee/OC4J_DBConsole/config/jms.xml (No such file or directory)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(FileInputStream.java:106)
    at java.io.FileInputStream.<init>(FileInputStream.java:66)
    at java.io.FileReader.<init>(FileReader.java:41)
    at oracle.sysman.emcp.util.PortManager.findUsedPortsFromXML(PortManager.java:282)
    at oracle.sysman.emcp.util.PortManager.markAllUsedPorts(PortManager.java:1172)
    at oracle.sysman.emcp.util.PortManager.getFreePorts(PortManager.java:543)
    at oracle.sysman.emcp.EMDBPreConfig.getFreePorts(EMDBPreConfig.java:2324)
    at oracle.sysman.emcp.EMDBPreConfig.checkPorts(EMDBPreConfig.java:2261)
    at oracle.sysman.emcp.EMDBPreConfig.performConfiguration(EMDBPreConfig.java:670)
    at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:233)
    at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:160)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:141)
    at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:479)
    at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1123)
    at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:463)
    at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:412)
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking JMS port: null from /opt/db/oracle/product/10.2.0/oc4j/j2ee/OC4J_DBConsole
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.util.PortManager findUsedPortsFromXML
    CONFIG: Could not find or correctly parse file /opt/db/oracle/product/10.2.0/oc4j/j2ee/OC4J_DBConsole/config/rmi.xml in searching for tag rmi-server with att
    ribute port
    java.io.FileNotFoundException: /opt/db/oracle/product/10.2.0/oc4j/j2ee/OC4J_DBConsole/config/rmi.xml (No such file or directory)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(FileInputStream.java:106)
    at java.io.FileInputStream.<init>(FileInputStream.java:66)
    at java.io.FileReader.<init>(FileReader.java:41)
    at oracle.sysman.emcp.util.PortManager.findUsedPortsFromXML(PortManager.java:282)
    at oracle.sysman.emcp.util.PortManager.markAllUsedPorts(PortManager.java:1176)
    at oracle.sysman.emcp.util.PortManager.getFreePorts(PortManager.java:543)
    at oracle.sysman.emcp.EMDBPreConfig.getFreePorts(EMDBPreConfig.java:2324)
    at oracle.sysman.emcp.EMDBPreConfig.checkPorts(EMDBPreConfig.java:2261)
    at oracle.sysman.emcp.EMDBPreConfig.performConfiguration(EMDBPreConfig.java:670)
    at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:233)
    at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:160)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:141)
    at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:479)
    at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1123)
    at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:463)
    at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:412)
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking RMI port: null from /opt/db/oracle/product/10.2.0/oc4j/j2ee/OC4J_DBConsole
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.util.PortManager findUsedPortsFromXML
    CONFIG: Could not find or correctly parse file /opt/db/oracle/product/10.2.0/oc4j/j2ee/OC4J_DBConsole/config/http-web-site.xml in searching for tag web-site
    with attribute port
    java.io.FileNotFoundException: /opt/db/oracle/product/10.2.0/oc4j/j2ee/OC4J_DBConsole/config/http-web-site.xml (No such file or directory)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(FileInputStream.java:106)
    at java.io.FileInputStream.<init>(FileInputStream.java:66)
    at java.io.FileReader.<init>(FileReader.java:41)
    at oracle.sysman.emcp.util.PortManager.findUsedPortsFromXML(PortManager.java:282)
    at oracle.sysman.emcp.util.PortManager.markAllUsedPorts(PortManager.java:1180)
    at oracle.sysman.emcp.util.PortManager.getFreePorts(PortManager.java:543)
    at oracle.sysman.emcp.EMDBPreConfig.getFreePorts(EMDBPreConfig.java:2324)
    at oracle.sysman.emcp.EMDBPreConfig.checkPorts(EMDBPreConfig.java:2261)
    at oracle.sysman.emcp.EMDBPreConfig.performConfiguration(EMDBPreConfig.java:670)
    at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:233)
    at oracle.sysman.emcp.EMDBPreConfig.invoke(EMDBPreConfig.java:160)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:141)
    at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:479)
    at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1123)
    at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:463)
    at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:412)
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking HTTP port: null from /opt/db/oracle/product/10.2.0/oc4j/j2ee/OC4J_DBConsole
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.util.FileUtil getProperties
    CONFIG: Error reading file /opt/db/oracle/product/10.2.0/sysman/config/emd.properties
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.util.PortManager getAgentPort
    CONFIG: Cannot parse EMD_URL correctly. No port identified
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Marking Agent port: null from /opt/db/oracle/product/10.2.0/sysman/config/emd.properties
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.util.PortManager markAllUsedPorts
    CONFIG: Cannnot parse EMD_URL correctly. No port identified
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.util.FileUtil getProperties
    CONFIG: Error reading file /opt/db/oracle/product/10.2.0/install/staticports.ini
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.util.PortManager getFreePorts
    CONFIG: /opt/db/oracle/product/10.2.0:mcidm11.pacs11.local:null:SDM:{}:null:{DBCONTROL_HTTP_PORT=1158, RMI_PORT=5520, JMS_PORT=5540, AGENT_PORT=3938}
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter AGENT_PORT_SDM.
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: AGENT_PORT_SDM value: 3938
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter DBCONTROL_HTTP_PORT_SDM.
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: DBCONTROL_HTTP_PORT_SDM value: 1158
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter JMS_PORT_SDM.
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: JMS_PORT_SDM value: 5540
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter RMI_PORT_SDM.
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: RMI_PORT_SDM value: 5520
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.EMDBPreConfig getFreePorts
    CONFIG: Ports assigned for SID: SDM : {DBCONTROL_HTTP_PORT=1158, RMI_PORT=5520, JMS_PORT=5540, AGENT_PORT=3938}
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: SDM, oracleHome: /opt/db/oracle/product/10.2.0, and user: SYS
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.EMReposConfig createRepository
    CONFIG: Spooling to /opt/db/oracle/product/10.2.0/cfgtoollogs/emca/SDM/emca_repos_create_2008-04-08_04-34-58-PM.log
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Repository successfully created
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: SDM, oracleHome: /opt/db/oracle/product/10.2.0, and user: SYS
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.EMReposConfig grantPrivsToDbsnmp
    CONFIG: Exception while granting priviliges.
    oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-00942: table or view does not exist
    at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1467)
    at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeSql(SQLEngine.java:1708)
    at oracle.sysman.emcp.EMReposConfig.grantPrivsToDbsnmp(EMReposConfig.java:503)
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:208)
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:124)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:142)
    at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:479)
    at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1123)
    at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:463)
    at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:412)
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.EMReposConfig invoke
    CONFIG: Failed to grant priviliges to dbsnmp.
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.EMReposConfig updateReposVars
    SEVERE: File/directory /opt/db/oracle/product/10.2.0/sysman/emdrep/config/repository.variables does not existApr 8, 2008 4:34:58 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine connecting with SID: SDM, oracleHome: /opt/db/oracle/product/10.2.0, and user: SYS
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: SQLEngine created successfully and connected
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.EMReposConfig unlockAccounts
    CONFIG: Unlocking dbsnmp and sysman
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.EMReposConfig unlockAccounts
    CONFIG: ORA-06550: line 1, column 62:
    PLS-00201: identifier 'SYSMAN.MGMT_VIEW_PRIV' must be declared
    ORA-06550: line 1, column 62:
    PL/SQL: Statement ignored
    oracle.sysman.assistants.util.sqlEngine.SQLFatalErrorException: ORA-06550: line 1, column 62:
    PLS-00201: identifier 'SYSMAN.MGMT_VIEW_PRIV' must be declared
    ORA-06550: line 1, column 62:
    PL/SQL: Statement ignored
    at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeImpl(SQLEngine.java:1467)
    at oracle.sysman.assistants.util.sqlEngine.SQLEngine.executeSql(SQLEngine.java:1708)
    at oracle.sysman.emcp.EMReposConfig.unlockAccounts(EMReposConfig.java:566)
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:235)
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:124)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:142)
    at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:479)
    at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1123)
    at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:463)
    at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:412)
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.EMReposConfig invoke
    SEVERE: Failed to unlock all EM-related accounts
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Failed to unlock all EM-related accounts
    Refer to the log file at /opt/db/oracle/product/10.2.0/cfgtoollogs/emca/SDM/emca_2008-04-08_04-33-25-PM.log for more details.
    Apr 8, 2008 4:34:58 PM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Failed to unlock all EM-related accounts
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:239)
    at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:124)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:142)
    at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:479)
    at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1123)
    at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:463)
    at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:412)

    Hi all,
    i started creating database control repository, when i saw emca running i had seen repository created successfully , but sysman user is not created at this point of time. Then i looked into emca_repos_create_2008-04-10_11-57-03-AM.log file but the file is unable to open because it's looking for file emreposcre.sql which creates sysman user in this location /opt/db/oracle/product/10.2.0/sysman/admin/emdrep/sql/
    i feel while installing the database these files are not created....? or i need to run any scripts before running emca ....?
    give me some inputs to this thread.
    Thanks,
    nil
    STARTED EMCA at Apr 10, 2008 11:55:41 AM
    EM Configuration Assistant, Version 10.2.0.1.0 Production
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Enter the following information:
    Database SID: XXXXX
    Listener port number: 1521
    Password for SYS user:
    Password for SYSMAN user:
    Do you wish to continue? [yes(Y)/no(N)]: yes
    Apr 10, 2008 11:57:02 AM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at /opt/db/oracle/product/10.2.0/cfgtoollog
    Apr 10, 2008 11:57:03 AM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    Apr 10, 2008 11:57:03 AM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Repository successfully created
    Enterprise Manager configuration completed successfully
    FINISHED EMCA at Apr 10, 2008 11:57:03 AM
    mcidm11 10.2.0/bin>
    CONFIG: Spooling to /opt/db/oracle/product/10.2.0/cfgtoollogs/emca/SDM/emca_repos_create_2008-04-10_11-57-03-AM.log
    Apr 10, 2008 11:57:03 AM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    Apr 10, 2008 11:57:03 AM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Repository successfully created
    mcidm11 emca/SDM> pwd
    /opt/db/oracle/product/10.2.0/cfgtoollogs/emca/SDM
    mcidm11 emca/SDM> more emca_repos_create_2008-04-10_11-57-03-AM.log
    SP2-0310: unable to open file "/opt/db/oracle/product/10.2.0/sysman/admin/emdrep/sql/emreposcre.sql"mcidm11 emca/SDM> cd
    Directory: /opt/db
    mcidm11 /opt/db> cd /opt/db/oracle/product/10.2.0/sysman/admin/emdrep/sql/
    Directory: /opt/db/oracle/product/10.2.0/sysman/admin/emdrep/sql
    mcidm11 emdrep/sql> ls
    core db ias ocs

  • Is it possible to install Oracle 10g database on a linux Os ?

    Hello all,
    I recently installed Fedora 14, and oracle 10g free edition, on my modest laptop.
    Problem is , I can't upload any scripts, because as i recently learnt from my school teacher, Oracle only works smoothly with Internet explorer browser (i.e.).
    I tried using programs like winetricks to download a linux version of i.e. but in this case Oracle doesn't even open its homepage.
    -In a nutshell, does anyone know a possible way to work with oracle 10g , (or any alternative), that's fully functional on linux (fedora 14) ? Download, Install steps,etc.
    All i need to do is upload simple SQL scripts, and practice my " select from...." commands.
    -Is oracle linux a option ? and what is it?
    Thank you already for any replies, I'm really getting tired of googling threw different forums.

    865504 wrote:
    Ed,
    -i knew my teacher was being stubborn;
    -I meant that the winetricks version of i.e., didn't open the homepage of oracle 10g (=log in screen).
    -what i was trying to do was, after having installed oracle 10g , "go to data base homepage" (openend by firefox) , once logged in with my username, upload a script , and practice typing the different (select from ...group by..etc) sql commands.
    Here is one of several concepts you need to fix in your mind. Databases don't have home pages. Client applications do. Databases store and manage data. Humans at the keyboard see the client application, not the database. Oracle provides some client apps ( iSQLPlus, Oracle Enterprise Manager (Grid Control), dbcontrol, APEX) and even installs some with the database by default, but they are distinctly separate from the database, and so must be identified when talking about user interface issues. Unfortunately, telling us you tried to open "the home page of oracle" tells us nothing at all. If you had said "Tried to log in with iSQLPlus" or "I tried to connect with Apex", it would have conveyed MUCH more information. We would have then had some frame of reference as to what you were seeing.
    To the "upload from where" question : I simply copied the scripts ( .sql , file) from the pc's from school, on usb, then copied them on my own system. When using the "upload scripts" option from oracle, Again, you must distinguish between "oracle" (the database) and whatever client tool you use to connect to it. "Oracle" (the database) doesn't have an "upload scripts" option. Some un-named application does.
    the script is uploaded, but when i try to "run" it , nothing , blank page. no tables, nada. And given what I've said above, you can guess what this statement means. - grin -
    My first guess was, well the teacher said " i.e. only " , so i tried installing i.e. , using winetricks, but i had a feeling i was going off-track, and that surely there must have been a much easier way.
    Even Billy was more charitable toward your teacher than I feel. And when he is so wrong about something as simple as this, makes me wonder what else he is wrong about. And the quality of the teachers calls into question the quality of the school in general.
    In fact, had I been told that by an instructor, I would make it a personal mission to prove him wrong. Not in front of the class (as much short term satisfaction as that may provide) but just by taking my laptop to his office and saying "let me show you something". One of my personal hot buttons is for someone who should know better to pronounce something as "won't work" when I've been doing it for so long and so easily as to just take it for granted.
    >
    Linux (fedora 14) is up and running,
    oracle 10g , linux version, was installed using detailed guide.
    And yes, i will look into oracle linux, and oracle 11g ,
    but i was hoping to use the same version as my school, to avoid any surprises when passing my exams.Edited by: EdStevens on Jun 13, 2011 3:02 PM

  • Moving Oracle 9i database from AIX 5.2 to AIX 5.3

    Hi,
    We are planing to move few of our Oracle 9i databases from AIX 5.2 to AIX 5.3 on another server. Will offline backup/restore work in this case ? The databases are fairly big (> 1 TB each). Looking for some advice.. Thanks.
    Rgds,
    Himansu

    himansu_utkal wrote:
    Hi Kamran,
    As the DBs are fairly large ( approx. 1 TB each), how long it would take to copy the databases to the target server using RMAN DUPLICATE .. ? Do you think offline backup/restore would be a better approach ? Both the source and target boxes are co-located in the same data center. Thanks !
    Rgds,
    HimansuI assume that RMAN will be more faster than hard copy/paste (cold backup). I can't say how much it will probably take to take RMAN DUPLICATE, but it should be faster than cold backup
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • Oracle 9i Database 9.2.0.1.0 Issues...

    Hi Friends,
    I downloaded the Oracle DB 9i Enterprise Edition (9.2.0.1) from Oracle's website for my class assignment. When I got to the screen that says "Installation types" Oracle 9i Database 9.2.0.1.0 and hit the NEXT button the universal installer disappears with no warning right at 36%. So then I tried to choose "Custom" instead of Enterprise Edition and the same exact thing happened. My computer specs are as follows:
    O/S: Windows XP Professional
    CPU: 2.8 Ghz
    Phys. Memory: 1,024 MB
    Available Physical Memory: 324 MB
    Hard Disk: 210 GB free space
    I would appreciate ANY help as my assignment is due on Monday. I have uninstalled and reinstalled so many times and nothing seems to work. My friend suggested that there may be a DLL file causing conflict somewhere. I don't know...I just need help and I am so frustrated with this! Thanks.

    Hello Everyone,
    I found a log file in c:\program files\oracle\inventory\logs. I am not sure if this will show anything but I am so desparate right now that I am willing to try just about anything. So...below please find my log file when I tried to do the install. If this is the wrong log file, can you please tell me where to go to get the right one. Thanks friends! This is the most frustrating thing...
    Environment variables:
         ORACLE_HOME =
         PATH = C:\DOCUME~1\User\LOCALS~1\Temp\OraInstall2006-06-05_12-41-21AM\oui\bin\win32;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\QuickTime\QTSystem\
         CLASSPATH = C:\Program Files\Java\jre1.5.0_06\lib\ext\QTJava.zip
    Username is: User
    Unable to read the list of homes from the inventory.
    The installer version is 2.2.0.12.0
    *** Welcome Page***
    Setting value of FROM_LOCATION to C:\9iDB\Disk1\stage\products.jar
    Setting value of SHOW_COMPONENT_LOCATIONS_PAGE to true
    Setting value of SHOW_CUSTOM_TREE_PAGE to true
    Setting value of SHOW_SUMMARY_PAGE to true
    Setting value of SHOW_INSTALL_PROGRESS_PAGE to true
    Setting value of SHOW_REQUIRED_CONFIG_TOOL_PAGE to true
    Setting value of SHOW_OPTIONAL_CONFIG_TOOL_PAGE to true
    Setting value of SHOW_RELEASE_NOTES to true
    Setting value of SHOW_END_SESSION_PAGE to true
    Setting value of SHOW_SPLASH_SCREEN to true
    Setting value of SHOW_WELCOME_PAGE to true
    Setting value of SHOW_ROOTSH_CONFIRMATION to true
    Setting value of SHOW_EXIT_CONFIRMATION to true
    Setting value of NEXT_SESSION to true
    Setting value of NEXT_SESSION_ON_FAIL to true
    Setting value of SHOW_DEINSTALL_CONFIRMATION to true
    Setting value of SHOW_DEINSTALL_PROGRESS to true
    Setting value of INVENTORY_LOCATION to C:\Program Files\Oracle\Inventory
    Setting value of UNIX_GROUP_NAME to
    Initializing inventory setup WCCE
    Doing operation in inventory setup WCCE
    Setting value of CLUSTER_NODES to
    *** Cluster Node Selection Page***
    ClusterNodes = CLUSTER_NODES =
    Setting value of FROM_LOCATION to C:\9iDB\Disk1\stage\products.jar
    Setting value of ORACLE_HOME to C:\oracle\ora92
    Setting value of ORACLE_HOME_NAME to OraHome92
    *** File Locations Page***
    FromLocation = FROM_LOCATION = C:\9iDB\Disk1\stage\products.jar
    ToLocation = ORACLE_HOME = C:\oracle\ora92
    ToName = ORACLE_HOME_NAME = OraHome92
    Initializing installer access setup
    Setting value of ORACLE_HOME to C:\oracle\ora92
    Setting value of ORACLE_HOME_KEY to Software\ORACLE\HOME0
    Setting value of ORACLE_HOME_FOLDER to Oracle - OraHome92
    Setting value of ORACLE_HOME_SERVICE to OraHome92
    Setting value of ToplevelComp to oracle.server, 9.2.0.1.0, >0.0.0.0.0, [ 912 ][OH:2]
    Setting value of SELECTED_LANGUAGES to [en]
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_apache_ejb
    Setting value of PROD_HOME to C:\oracle\ora92/jpi
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_fonts
    Setting value of PROD_HOME to C:\oracle\ora92/rts
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.server
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.ops
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.partitioning
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.spatial
    Setting value of PROD_HOME to C:\oracle\ora92/olap
    Setting value of PROD_HOME to C:\oracle\ora92/dmt
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.ordcac
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.infrastructure
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking
    Setting value of PROD_HOME to C:\oracle\ora92\wf
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.client
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_utilities_util
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_plsql
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_dbv
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.workflow.client
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_javavm_cmp
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.ano
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_workflow_mailer
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.devtools
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_mig
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_oci_top
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext.oapps_agentext
    Setting value of PROD_HOME to C:\oracle\ora92\oem_webstage
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_prod
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_otrace
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.intermedia.imserver
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_ldap_rsf_cmp
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.cman
    Setting value of PROD_HOME to C:\oracle\ora92/tg4ifmx
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.locator
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_sysman_reporting
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_sysman_webserver
    Setting value of PROD_HOME to C:\oracle\ora92/tg4sybs
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_hs_odbc
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_prod
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emcltprod
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_hs_olefs
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_xml
    Setting value of PROD_HOME to C:\oracle\ora92\Apache\Apache
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_hs_olesql
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_dbscripts
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_nid
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_hs_common
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.context
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.proc
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.apache.ojsp
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.webdb.modplsql
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_prod
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.names
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92\sysman
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.java.ojsp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_p2k_xmldevkit
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext.frms_agentext
    Setting value of PROD_HOME to C:\oracle\ora92\sysman
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.apache.xdk
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_options_ano_dce
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_expimp
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.winprod
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext.sqlsrv_agentext
    Setting value of PROD_HOME to C:\oracle\ora92\soap
    Setting value of PROD_HOME to C:\oracle\ora92/oracle.interMedia.imclient
    Setting value of PROD_HOME to C:\oracle\ora92\sysman
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext.emd_agentext
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext.oecm_agentext
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext.ows_agentext
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.oemagent
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.oemagent.agentca
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.assistants.dbma
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.ordsmv
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.ordaudio
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.ordimg
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.intermedia.imcom
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.ordcom
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_prod
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/tg4msql
    Setting value of PROD_HOME to C:\oracle\ora92/BC4J
    Setting value of PROD_HOME to C:\oracle\ora92/oracle.interMedia.imclient
    Setting value of PROD_HOME to C:\oracle\ora92/oracle.interMedia.imclient
    Setting value of PROD_HOME to C:\oracle\ora92/oracle.interMedia.imclient
    Setting value of PROD_HOME to C:\oracle\ora92/oracle.interMedia.imclient
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.intermedia.jai
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.rdbms.ovm
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_demo
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.utilities.perfmon
    Setting value of PROD_HOME to C:\oracle\ora92/soap
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_p2k_xmldevkit
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.netmgr.emint
    Setting value of PROD_HOME to C:\oracle\ora92/tg4tera
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/soap
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_hs_oledb
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_sqlj
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_parser_plsql
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_xsql
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_classgen_java
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_transview
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_transx
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.xml.xml_ncomp
    Setting value of PROD_HOME to C:\oracle\ora92\pg4mqseries
    Setting value of PROD_HOME to C:\oracle\ora92/pg4appc
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_parser_cplus
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_classgen_cplus
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_bali_ohw
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_bali_cabo
    Setting value of PROD_HOME to C:\oracle\ora92/sysman/ocm
    Setting value of PROD_HOME to C:\oracle\ora92/demo/schema
    Setting value of PROD_HOME to C:\oracle\ora92\mgw
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_seeddb
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_seeddb
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_seeddb
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_advrep
    Setting value of PROD_HOME to C:\oracle\ora92/tg4drda
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.netsrv
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_options_ano_ssl
    Setting value of PROD_HOME to C:\oracle\ora92/oracel_rdbms_sqlldr
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_oci
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.rdbms.sqlplus
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_prod
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.ott
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.olap.cv
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_occi
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.oo4o
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.oledb
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_networking_snmp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_workflow_builder
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.procob
    Setting value of PROD_HOME to C:\oracle\ora92/dbui
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_workflow_common
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.procob18
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_options_ano_ssl_owm
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.ano.sns
    Setting value of PROD_HOME to C:\oracle\ora92in
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.java.javavm.javatools
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/oramts
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_sqlj_sqljtrans
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_xml_xsu
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.mmc.admin
    Setting value of PROD_HOME to C:\oracle\ora92/jle
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.mmc.primary
    Setting value of PROD_HOME to C:\oracle\ora92/oracle.interMedia.imclient
    Setting value of PROD_HOME to C:\oracle\ora92\Apache\Jserv
    Setting value of PROD_HOME to C:\oracle\ora92\Apache\Jsdk
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_rman
    Setting value of PROD_HOME to C:\oracle\ora92\ocs4j
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_aqapi
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_sqlj_sqljruntime
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.ifa
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_oci12
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.assistants.dbca
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_oci14
    Setting value of PROD_HOME to C:\oracle\ora92\Apache\Apache
    Setting value of PROD_HOME to C:\oracle\ora92\Apache\perl
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.netcltprod
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.netclt
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.netmgr
    Setting value of PROD_HOME to C:\oracle\ora92/oem_webstage
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_expimp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_networking_netca
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_parser_c
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.assistants.acf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_javavm_visiorb
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.ops.opsca
    Setting value of PROD_HOME to C:\oracle\ora92\jdk
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.oemagent.base_oemagent
    Setting value of PROD_HOME to C:\oracle\ora92/classes/oracle/sysman/vif
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_options_olap_api
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_olap_wrksht
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_tools_regexp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_fonts
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_utilities_util_common
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.sysman.prereq
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.rsf
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/sysman/expert
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_sysman_sqlserver
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/sysman/admin
    Setting value of PROD_HOME to C:\oracle\ora92/sysman/expert
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_sysman_em_nls
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_sysman_vmqshared
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_rdbms_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_dbjava_rsf
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_nlsrtl_rsf
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.precomp_common
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_net_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_precomp_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/dcommon
    Setting value of PROD_HOME to C:\oracle\ora92/help
    Setting value of PROD_HOME to C:\oracle\ora92/help
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.xml.parser.java
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.doc.windoc
    Setting value of PROD_HOME to C:\oracle\ora92/jewt
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_oracore_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/kodiak
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_platform_rsf
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.mmc.config
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_plsql_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_ldap_rsf_cmp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_sysman_oembase_ela
    Setting value of PROD_HOME to C:\oracle\ora92/ice
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_install_instcommon
    Setting value of PROD_HOME to C:\oracle\ora92/ewt
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_slax_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_tools_share
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.apache.isqlplus.ise
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_oci11
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_thin14
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_ssl_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_agent_rsf_agent_rsf_cmp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_clntsh_rsf_clntsh_rsf_cmp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_thin12
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_otrace_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_rdbms_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/lib
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_oci_common
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_thin11
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_jdbc_common
    Setting value of PROD_HOME to C:\Program Files\Oracle\Inventory\..\oui
    Unable to read C:/Program Files/Oracle/Inventory/ContentsXML/comps.xml. Some inventory information may be lost.
    Calling query areasQueries2.2.0.7.0 getInventoryLocation
    Query returned : C:\Program Files\Oracle\Inventory
    Setting value of PROD_HOME to C:\Program Files\Oracle\Inventory\..\jre\1.3.1
    Setting value of PROD_HOME to C:\Program Files\Oracle\Inventory\..\jre\1.1.8
    Doing operation for installer access setup
    Setting value of SELECTED_LANGUAGES to [en]
    Setting value of ToplevelComp to oracle.server, 9.2.0.1.0, >0.0.0.0.0, [ 912 ][OH:2]
    *** Available Products Page***
    TopLevelComp = ToplevelComp = oracle.server, 9.2.0.1.0, >0.0.0.0.0, [ 912 ][OH:2]
    Setting value of ToplevelComp to oracle.server, 9.2.0.1.0, >0.0.0.0.0, [ 912 ][OH:2]
    Setting value of DEP_MODE to EE
    Setting value of TLDepModes to EE,
    *** Installation Types Page***
    DepMode = DEP_MODE = EE
    TLDepModes = TLDepModes = EE,
    The selected install type is "Enterprise Edition"
    Setting value of DEP_MODE to EE
    Install type for "Oracle9i Database 9.2.0.1.0 " is "Enterprise Edition"
    Install type for "Enterprise Edition Options 9.2.0.1.0 " is "Typical"
    Install type for "Oracle9i Real Application Clusters 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Partitioning 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Spatial 9.2.0.1.0 " is "Typical"
    Install type for "Oracle OLAP 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Data Mining 9.2.0.1.0 " is "Typical"
    Install type for "Oracle COM Automation Feature 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Net Services 9.2.0.1.0 " is "Server.Typical"
    Install type for "Oracle9i 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Database Utilities 9.2.0.1.0 " is "Typical"
    Install type for "PL/SQL 9.2.0.1.0 " is "Typical"
    Install type for "Database Verify Utility 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JVM 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Advanced Security 9.2.0.1.0 " is "Typical"
    Install type for "Oracle9i Development Kit 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Products 9.2.0.1.0 " is "Enterprise Edition"
    Install type for "Migration Utility 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Programmer 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Intelligent Agent Extensions 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Applications Extensions 9.2.0.1.0 " is "Typical"
    Install type for "Enterprise Manager Web Site 9.2.0.1.0 " is "Complete"
    Install type for "Oracle9i Syndication Server 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Trace 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Ultra Search Server 9.2.0.1.0 " is "Typical"
         Conflict while setting install type of "Sun JDK 1.3.1.0.1a " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Management Server 9.2.0.1.0 " is "Complete"
    Install type for "Oracle interMedia Locator 9.2.0.1.0 " is "Typical"
    Install type for "Reporting Framework 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Webserver Integration 9.2.0.1.0 " is "Complete"
    Install type for "Generic Connectivity Using ODBC 9.2.0.1.0 " is "Typical"
    Install type for "iSQL*Plus 9.2.0.1.0 " is "Typical"
    Install type for "Generic Connectivity Using OLEDB - FS 9.2.0.1.0 " is "Typical"
    Install type for "XML 9.2.0.1.0 " is "Typical"
         Conflict while setting install type of "XML Parser for Java 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle HTTP Server 9.2.0.1.0 " is "Typical"
    Install type for "Generic Connectivity Using OLEDB - SQL 9.2.0.1.0 " is "Typical"
    Install type for "Database SQL Scripts 9.2.0.1.0 " is "Typical"
    Install type for "New Database ID 9.2.0.1.0 " is "Typical"
    Install type for "Generic Connectivity Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Text 9.2.0.1.0 " is "Typical"
    Install type for "Apache Configuration for Oracle Java Server Pages 1.1.2.3.0 " is "Typical"
    Install type for "Oracle Mod PL/SQL Gateway 3.0.9.8.3b " is "Typical"
    Install type for "Oracle Dynamic Services Server 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Ultra Search Middle-Tier 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Diagnostics Pack 9.2.0.1.0 " is "Typical"
         Conflict while setting install type of "Enterprise Manager Client 9.2.0.1.0 " to "Maximum (Complete)". Install type already set to "Maximum (Complete)". Seting it to "Custom (Custom)"
    Install type for "Oracle Java Server Pages 1.1.3.1.0 " is "Typical"
    Install type for "Oracle XML Developer's Kit 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Forms Extensions 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Tuning Pack 9.2.0.1.0 " is "Complete"
    Install type for "Apache Configuration for Oracle XML Developer's Kit 9.2.0.1.0 " is "Typical"
    Install type for "Export/Import 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Windows Interfaces 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Management Pack for Oracle Applications 9.2.0.1.0 " is "Complete"
    Install type for "MIcrosoft SQLServer(TM) Extensions 9.2.0.1.0 " is "Typical"
    Install type for "Oracle SOAP for JServ 2.0.0.0.0a " is "Typical"
    Install type for "Oracle interMedia Client Option 9.2.0.1.0 " is "Typical"
    Install type for "Oracle EMD Agent Extensions 9.2.0.1.0 " is "Typical"
    Install type for "Oracle eBusiness Management Extensions 9.2.0.1.0 " is "Typical"
    Install type for "Oracle HTTP Server Extensions 9.2.0.1.0 " is "Typical"
    Install type for "PL/SQL Embedded Gateway 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Intelligent Agent 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Intelligent Agent Config Tool 9.2.0.1.0 " is "Typical"
    Install type for "Database Upgrade Assistant 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Video 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Audio 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Image 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Data Management Services Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Annotator 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Change Management Pack 9.2.0.1.0 " is "Complete"
    Install type for "BC4J Runtime for Database 9.0.2.692.1 " is "Typical"
    Install type for "Oracle interMedia Web Client 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Client Demos 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Java Media Framework Client 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Client Compatibility Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Java Advanced Imaging 9.2.0.1.0 " is "Typical"
    Install type for "Database Workspace Manager 9.2.0.1.0 " is "Typical"
    Install type for "Enterprise Manager Client 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Integrated Applications 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Console 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Ultra Search Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Database Demos 9.2.0.1.0 " is "Typical"
    Install type for "Oracle SOAP Server 2.0.0.0.0a " is "Typical"
    Install type for "Enterprise Manager Database Applications 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "SQL*Plus 9.2.0.1.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle XML Runtime Components 9.2.0.1.0 " is "Typical"
         Conflict while setting install type of "XML Parser for PL/SQL 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "XML Class Generator for Java 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "XML Transviewer Beans 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "XML Transx 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Net Integration 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Workflow Manager 9.2.0.1.0 " is "Complete"
    Install type for "Oracle SOAP Client 2.0.0.0.0a " is "Typical"
    Install type for "Common Files For Generic Connectivity Using OLEDB 9.2.0.1.0 " is "Typical"
    Install type for "Enterprise Manager Common Files 9.2.0.1.0 " is "Complete"
         Conflict while setting install type of "Secure Socket Layer 9.2.0.1.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Oracle Java Tools 9.2.0.1.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Enterprise Manager Base Classes 9.2.0.1.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Oracle JFC Extended Windowing Toolkit 4.1.10.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle SQLJ 9.2.0.1.0 " is "Typical"
    Install type for "XML Parser for PL/SQL 9.2.0.1.0 " is "Custom"
    Install type for "XSQL Servlet 9.2.0.1.0 " is "Typical"
    Install type for "XML Class Generator for Java 9.2.0.1.0 " is "Custom"
    Install type for "XML Transviewer Beans 9.2.0.1.0 " is "Custom"
    Install type for "XML Transx 9.2.0.1.0 " is "Custom"
    Install type for "XML Parser for Oracle JVM 9.2.0.1.0 " is "Typical"
    Install type for "XML Parser for C++ 9.2.0.1.0 " is "Typical"
    Install type for "XML Class Generator for C++ 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Help for the Web 1.0.7.0.0 " is "Complete"
    Install type for "Oracle UIX 2.0.20.0.0 " is "Complete"
         Conflict while setting install type of "Oracle Extended Windowing Toolkit 3.4.13.0.0 " to "Typical (Typical)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Install type for "Change Management Common Files 9.2.0.1.0 " is "Complete"
         Conflict while setting install type of "Oracle Intelligent Agent Base Component Files 9.2.0.1.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Common Schema Demos 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Message Gateway Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Starter Database 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Complete OLTP Starter Database 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Complete DSS Starter Database 9.2.0.1.0 " is "Typical"
    Install type for "Advanced Replication 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Net Listener 9.2.0.1.0 " is "Typical"
    Install type for "Secure Socket Layer 9.2.0.1.0 " is "Custom"
    Install type for "SQL*Loader 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Call Interface (OCI) 9.2.0.1.0 " is "Typical"
    Install type for "SQL*Plus 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Required Support Files 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Documentaion Required Support Files 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Object Type Translator 9.2.0.1.0 " is "Typical"
    Install type for "Oracle OLAP CWM Lite 9.2.0.1.0 " is "Typical"
    Install type for "Oracle OLAP Cube Viewer 9.2.0.1.0 " is "Typical"
         Conflict while setting install type of "Oracle OLAP Worksheet 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Install type for "Oracle C++ Call Interface 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Objects for OLE 9.2.0.4.4 " is "Typical"
    Install type for "Oracle Provider for OLE DB 9.2.0.1.0 " is "Typical"
    Install type for "Oracle SNMP Agent 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Database User Interface 2.2.11.0.0 " is "Typical"
    Install type for "Oracle Wallet Manager 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Assistant Common Files 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Authentication and Encryption 9.2.0.1.0 " is "Typical"
    Install type for "Oracle ODBC Driver 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Java Tools 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Visigenics ORB 3.4.0.0.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Java Runtime Environment 1.1.8.16.0 " to "Custom (Custom)". Install type already set to "Maximum (Complete)". Seting it to "Custom (Custom)"
    Install type for "Enterprise Manager Paging Server 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Services For Microsoft Transaction Server 9.2.0.1.0 " is "Typical"
    Install type for "Enterprise Login Assistant 9.2.0.1.0 " is "Custom"
    Install type for "SQLJ Translator 9.2.0.1.0 " is "Typical"
    Install type for "Oracle XML SQL Utility 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Administration Assistant for Windows NT 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Java Layout Engine 2.0.1.0.0 " is "Complete"
         Conflict while setting install type of "Bali Share 1.1.17.0.0 " to "Maximum (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Snap-In Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Java Client 9.2.0.1.0 " is "Typical"
    Install type for "Apache JServ 1.1.0.0.0g " is "Typical"
    Install type for "JSDK 2.0.0.0.0d " is "Typical"
    Install type for "Recovery Manager 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Caching Service for Java 2.1.0.0.0a " is "Typical"
    Install type for "Advanced Queueing (AQ) API 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC/OCI Interfaces 9.2.0.1.0 " is "Typical"
    Install type for "SQLJ Runtime 9.2.0.1.0 " is "Typical"
    Install type for "Oracle INTYPE File Assistant 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.2 9.2.0.1.0 " is "Typical"
    Install type for "Database Configuration Assistant 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.4 9.2.0.1.0 " is "Typical"
    Install type for "Apache Web Server files 1.3.22.0.0a " is "Typical"
    Install type for "Oracle Perl Interpreter 5.00503.0.0.0c " is "Typical"
    Install type for "Oracle Net 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Net Manager 9.2.0.1.0 " is "Typical"
    Install type for "Enterprise Manage Website Translated Files 9.2.0.1.0 " is "Complete"
    Install type for "Character Set Migration Utility 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Net Configuration Assistant 9.2.0.1.0 " is "Typical"
         Conflict while setting install type of "Oracle9i Real Application Clusters Management 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "XML Parser for C 9.2.0.1.0 " is "Typical"
    Install type for "Enterprise Manager Paging and OMS Common Files 9.2.0.1.0 " is "Complete"
    Install type for "Assistant Common Files 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Oracle Help For Java 3.2.13.0.0 " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Oracle Code Editor 1.2.1.0.0A " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Install type for "Visigenics ORB 3.4.0.0.0 " is "Custom"
    Install type for "Oracle Directory Manager 9.2.0.1.0 " is "Complete"
    Install type for "Oracle9i Real Application Clusters Management 9.2.0.1.0 " is "Custom"
    Install type for "Sun JDK 1.3.1.0.1a " is "Custom"
         Conflict while setting install type of "Sun JDK extensions 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Internet Directory Client Common Files 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Intelligent Agent Base Component Files 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Oracle Net Required Support Files 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Oracle9i Globalization Support 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Oracle Core Required Support Files 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Utilities Common Files 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Developer Server Forms Manager 9.2.0.1.0 " is "Typical"
    Install type for "Oracle OLAP API 9.2.0.1.0 " is "Typical"
    Install type for "Oracle OLAP Worksheet 9.2.0.1.0 " is "Custom"
    Install type for "regexp 2.0.20.0.0 " is "Typical"
    Install type for "Oracle Display Fonts 9.0.2.0.0 " is "Typical"
    Install type for "Enterprise Manager Quick Tours 9.2.0.1.0 " is "Complete"
    Install type for "Utilities Common Files 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Installation Prerequisite Checks 9.2.0.1.0 " is "Complete"
    Install type for "Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Base Classes 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Events 9.2.0.1.0 " is "Typical"
    Install type for "Capacity Planner 9.2.0.1.0 " is "Complete"
    Install type for "Performance Manager 9.2.0.1.0 " is "Complete"
    Install type for "SQL Analyze 9.2.0.1.0 " is "Complete"
    Install type for "Trace DataViewer 9.2.0.1.0 " is "Complete"
    Install type for "Expert 9.2.0.1.0 " is "Complete"
    Install type for "Index Tuning Wizard 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Win32 Apps Bridge 9.2.0.1.0 " is "Complete"
    Install type for "SQLServer Monitoring Option 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Translated Files 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Win32 Application Common Files 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Expert Common Files 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Win32 App Translated Files 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Shared Libraries 9.2.0.1.0 " is "Complete"
    Install type for "XDK Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "DBJAVA Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle9i Globalization Support 9.2.0.1.0 " is "Custom"
    Install type for "Precompiler Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Net Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Precompiler Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Documentaion Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Help For Java 3.2.13.0.0 " is "Custom"
    Install type for "Oracle Help For Java 4.1.13.0.0 " is "Custom"
    Install type for "XML Parser for Java 9.2.0.1.0 " is "Custom"
    Install type for "Oracle9i Windows Documentation 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JFC Extended Windowing Toolkit 4.1.10.0.0 " is "Custom"
    Install type for "Oracle Core Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Code Editor 1.2.1.0.0A " is "Custom"
    Install type for "Platform Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Remote Configuration Agent 9.2.0.1.0 " is "Typical"
    Install type for "PL/SQL Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "LDAP Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Minimal Integration 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Ice Browser 5.06.8.0.0 " is "Custom"
    Install type for "Installation Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Extended Windowing Toolkit 3.4.13.0.0 " is "Custom"
    Install type for "Parser Generator Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Bali Share 1.1.17.0.0 " is "Custom"
    Install type for "iSQL*Plus Extension for Windows 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.1 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC Development Drivers 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC Thin Driver for JDK 1.4 9.2.0.1.0 " is "Typical"
    Install type for "SSL Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Agent Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Client Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle JDBC Thin Driver for JDK 1.2 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Trace Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "RDBMS Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Sun JDK extensions 9.2.0.1.0 " is "Custom"
    Install type for "JDBC/OCI Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC Thin Driver for JDK 1.1 9.2.0.1.0 " is "Typical"
    Install type for "JDBC Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Universal Installer 2.2.0.12.0 " is "Custom"
    Install type for "Java Runtime Environment 1.3.1.1.0a " is "Custom"
    Install type for "Java Runtime Environment 1.1.8.16.0 " is "Custom"
    Calling query areasQueries2.2.0.7.0 getComponentInstallTypeName
    Query returned : EE
    Calling query generalQueries2.2.0.7.0 getOSName
    Query returned : NT_X86
    Calling query generalQueries2.2.0.7.0 getOSVer
    Query returned : 5.1
    Calling query generalQueries2.2.0.7.0 isCurrentPlatformInGroup
    platGroup = WINDOWS
    Query returned : true
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.server
    startVersion = 8.1.0.0.0
    endVersion = 9.2.0.9.0
    acceptCompatible = null
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.client
    startVersion = 8.1.0.0.0
    endVersion = 9.2.0.9.0
    acceptCompatible = null
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.client
    startVersion = 8.1.0.0.0
    endVersion = 9.2.0.9.0
    acceptCompatible = null
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.iappserver.iapptop
    startVersion = 9.0.2.0.0
    endVersion = 9.0.9.0.0
    acceptCompatible = null
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.iappserver.infrastructure
    startVersion = 9.0.2.0.0
    endVersion = 9.0.9.0.0
    acceptCompatible = null
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.iappserver.devcorner
    startVersion = 9.0.2.0.0
    endVersion = 9.0.9.0.0
    acceptCompatible = null
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.networking.netclt
    startVersion = 8.1.3.0.0
    endVersion = 9.0.0.0.0
    acceptCompatible = null
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\nt.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\win95.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\win98.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\windows.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\netware.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\os2.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\dos.rgs
    Query returned : false
    Calling query WinSetAclQuery1.0.2 setPermissions
    dirName = C:\oracle\ora92
    isAdmin = false
    Query returned : 0
    Calling query PrerequisiteQueries1.1.3 getWin32VideoColorBits
    Query returned : 32
    Calling query generalQueries2.2.0.7.0 getTotalPhysicalMemory
    Query returned : 1046620
    Calling query w32RegQueries2.2.0.7.0 hasAdminPrivileges
    Query returned : true
    Calling query PrerequisiteQueries1.1.3 getWin32OSLevel
    Query returned : Service Pack 2
    Setting value of PRE_REQUISITE to true
    Calling query globalVarQueries2.1.0.4.0 setGlobalVariable
    variable = oracle.rdbms.installing
    value = true
    Query returned : true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to false
    # The pre-requisite for the component Oracle9i Real Application Clusters 9.2.0.1.0 has failed.
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to false
    # The pre-requisite for the component Oracle9i Real Application Clusters Management 9.2.0.1.0 has failed.
    Calling query generalQueries2.2.0.7.0 isCurrentPlatformInGroup
    platGroup = UNIX
    Query returned : false
    Calling query rgsQueries2.2.0.7.0 isProductInstalled
    Location = C:\oracle\ora92
    InternalName = w32rsf80
    MaxVersion = 8.0.7.0.0
    MinVersion = 8.0.3.0.0
    Query returned : false
    Calling query rgsQueries2.2.0.7.0 isProductInstalled
    Location = C:\oracle\ora92
    InternalName = w32rsf73
    MaxVersion = 7.3.5.0.0
    MinVersion = 7.3.1.0.0
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.sysman.netclt
    startVersion = 8.0.3.0.0
    endVersion = 8.0.6.0.0
    acceptCompatible = false
    Query returned : false
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Calling query generalQueries2.2.0.7.0 getOSName
    Query returned : NT_X86
    Calling query w32RegQueries2.2.0.7.0 RegKeyExists
    Key = HKEY_LOCAL_MACHINE
    SubKey = Software\Gradient\DCE
    Query returned : false
    Setting value of PRE_REQUISITE to false
    # The pre-requisite for the component DCE Integration 9.2.0.1.0 has failed.
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Calling query generalQueries2.2.0.7.0 isCurrentPlatformInGroup
    platGroup = Windows
    Query returned : true
    Calling query rgsQueries2.2.0.7.0 isProductInstalled
    Location = C:\oracle\ora92
    InternalName = w32oem10
    MaxVersion = null
    MinVersion = null
    Query returned : false
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Calling query areasQueries2.2.0.7.0 getComponentInstallTypeName
    Query returned : Complete
    Calling query generalQueries2.2.0.7.0 getOSName
    Query returned : NT_X86
    Calling query WindowsGeneralQueries2.2.0.7.0 getWindowsSystemDirectory
    Query returned : C:\WINDOWS\system32
    Calling query generalQueries2.2.0.7.0 isCurrentPlatformInGroup
    platGroup = WINDOWS
    Query returned : true
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.networking.netclt
    startVersion = 8.1.3.0.0
    endVersion = 8.1.4.0.0
    acceptCompatible = null
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\nt.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\win95.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\win98.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\windows.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\netware.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\os2.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\dos.rgs
    Query returned : false
    Calling query generalQueries2.2.0.7.0 getTotalPhysicalMemory
    Query returned : 1046620
    Setting value of PRE_REQUISITE to true
    Calling query rgsQueries2.2.0.7.0 getAllOracleHomes
    Query returned : C:\oracle\ora92,
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.sysman.w32common
    startVersion = 9.2.0.0.0
    endVersion = 9.2.99.99.99
    acceptCompatible = null
    Query returned : false
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Calling query rgsQueries2.2.0.7.0 getAllOracleHomes
    Query returned : C:\oracle\ora92,
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.sysman.w32common
    startVersion = 9.2.0.0.0
    endVersion = 9.2.99.99.99
    acceptCompatible = null
    Query returned : false
    Setting value of PRE_REQUISITE to true
    Calling query rgsQueries2.2.0.7.0 getAllOracleHomes
    Query returned : C:\oracle\ora92,
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.sysman.w32common
    startVersion = 9.2.0.0.0
    endVersion = 9.2.99.99.99
    acceptCompatible = null
    Query returned : false
    Setting value of PRE_REQUISITE to true
    Calling query rgsQueries2.2.0.7.0 getAllOracleHomes
    Query returned : C:\oracle\ora92,
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.sysman.w32common
    startVersion = 9.2.0.0.0
    endVersion = 9.2.99.99.99
    acceptCompatible = null
    Query returned : false
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Calling query areasQueries2.2.0.7.0 getComponentInstallTypeName
    Query returned : Custom
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Calling query SIDQueries1.2.4 getAllOracleHomes

  • How to install oracle 9i database, 9i AS , 9i DS in a standalone system

    hi,
    can any one explain me the plan how to install oracle 9i database, 9i AS , 9i DS in a single standalone system. is it possible ?
    if possible , can u suggest me how to plan these operations in detail.
    thanks
    N.RAM PRASAD

    It's very easy to find. Please refer to this address: http://tinyurl.com/qmgk5v
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • How to install oracle 9i database on rhel4

    Hi,
    i am new to database and i have to install oracle database 9i on RHEL4.
    can anybody give me the detail steps to do this.
    Thanks in advance

    Duplicate post!
    Re: how to install oracle 9i database on rhel4
    Refer to this address:
    http://tinyurl.com/qmgk5v
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • Migrate Oracle 9i Database to Oracle 10g Solaris Platform

    Hi DBAs,
    Thank you very much all of you, you helped me in RMAN Duplicate Database, There was a problem in my backupset and now it has been resolved.
    I have now following task.
    I want to migrate Oracle 9i Database to Oracle 10g ASM, both are on Solaris platform. Please provide me step by step solution. I have very big Database about 250G Database.

    In the "Complete checklist for manual upgrades to 10gR2" is written:
    PREREQUISITES
    =============
    + Install Oracle 10g Release 2 in a new Oracle Home.
    + Install the latest available patchset from Metalink.
    + Install the latest available Critical Patch Update.
    ... so "Install the latest available Critical Patch Update" step is that for the Oracle 10g database Oracle Home or Oracle 9i database Oracle Home ? I think that is for the 10g database/ Oracle Home ...
    after applying the CPU pacht there is some "Post Installation Instructions":
    3.3.5 Post Installation Instructions which demande a connection to the database:
    3. For each database instance running out of the ORACLE_HOME being patched, connect to the database using SQL*Plus as SYSDBA and run catcpu.sql as follows:
    cd %ORACLE_HOME%\CPU\CPUJan2007
    sqlplus /nolog SQL> CONNECT / AS SYSDBA
    SQL> STARTUP
    SQL> @catcpu.sql
    SQL> QUIT
    My question is ... If I want to upgrade a 9i database to 10g and I apply this CPU before the upgrade is done (to 10g Oracle Home), how could I connect to an instance which is not present to run this script ? ... is this step mandatory or is optional ?
    Thanks,
    P.

  • Oracle 11g database installation

    Hello,
    I just want to install the oracle 11g database system in my Archlinux. I've looked the wiki but it's a little bit old.
    So has someone tried these days installing it in Arch? How is it going? And the AUR script works?
    Another question is how mush size it will be when installed?
    Thanks!

    I have successfully installed Oracle 11g R2 using the instructions in the Dutch article on the wiki: https://wiki.archlinux.org/index.php/Or … erlands%29 (Google translate is useful).
    I had an issue with the db console, but dropping and recreating the repository sorted that out: http://www.bestremotedba.com/how-to-dro … er-in-10g/

Maybe you are looking for

  • How to install Windows 7 backups in time capsule

    Hallo im a bit frustrated. Beside my mac i use a windows 7 pc for banking etc. i like to get a automatic backup of my pc on my time capsule as I get for my Mac. How can I manage this?

  • Planning Hierarchy Maintenance with Gaps

    Dear Experts, Iam using flexible planning for sales plan. I am using flexible planning. I wanted to create planning hierarchy with Gaps. I mean at some levels I will not be having any data to enter. For eg. My first level is country and second level

  • Drill Down in Charts

    Hi All, My requirement is to achieve drill down in Stacked Bar Chart. On the click of an item in Stacked Bar Chart i want to drill down and display another Chart based on the selected context. Need suggestions or sample code to achieve this. Help is

  • Why notify() and notifyall() is in Object class

    pls help me why notify() and notifyall() methods which are related to thread are define in Object class,instead of defining in Thread class

  • Is it possible to set character set at instance level?

    hi all, I have some confusion. say my database character set is AL32UTF8. and i want tio set charcter set of instance is WE8MSWIN1252 Is it passible to set character set at instance level? Please reply with yes or No or why? Thanks & Regards,