Oracle - perl

Hi there,
I want to connect to my ORacle 9.2 via perl (both on the same machine)
If I run my perl Script I got the following output:
DBI connect('AFPERL','afriend',...) failed: (UNKNOWN OCI STATUS 22) OCIInitialize. Check ORACLE_HOME and NLS settings etc. at ./oracle.pl line 10
Can't call method "prepare" on an undefined value at ./oracle.pl line 11.
Do you know whats the problem?

when I connect to an another Oracle DB (TEST Maschien) it runs good
But now here on the production machine I got this errors:
#!/usr/bin/perl
use strict;
use DBI;
$ENV{ORACLE_SID}="ORACLE";
$ENV{ORACLE_HOME}="/disk1/oracle_base/product/920";
$ENV{NLS_LANG}="American_America.WE8ISO8859P1";
my $USER = "username";
my $PASS = "password";
my $logon = DBI->connect("dbi:Oracle:AFPERL",$USER,$PASS);
my $sql = $logon->prepare("select * from city") ;
$sql->execute;
while(my @data=$sql->fetchrow_array) {
print "$data[0]\n";
print "$data[1]\n";
print "$data[2]\n";
$sql->finish;
$logon->disconnect;
Message was edited by:
user531369

Similar Messages

  • Cannot install DBD::Oracle perl module with Oracle 11.2.0.3 client

    Hi
    I have been trying to install DBD::Oracle perl module on a Centos 5.7 server which is running Oracle client version 11.2.0.3. I have installed all dependencies prior to attempting installing the same and I am running into the following error -
    /usr/bin/ld: skipping incompatible /app/utiba/oracle/client/lib//libclntsh.so when searching for -lclntsh
    /usr/bin/ld: cannot find -lclntsh
    collect2: ld returned 1 exit status
    make: *** [blib/arch/auto/DBD/Oracle/Oracle.so] Error 1Here are the complete details of my attempt of installation of the perl module -
    [root@tch1testuview1 DBD-Oracle-1.50]# perl Makefile.PL
    Using DBI 1.52 (for perl 5.008008 on x86_64-linux-thread-multi) installed in /usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi/auto/DBI/
    Configuring DBD::Oracle for perl 5.008008 on linux (x86_64-linux-thread-multi)
    Remember to actually *READ* the README file! Especially if you have any problems.
    Installing on a linux, Ver#2.6
    Using Oracle in /app/utiba/oracle/client
    DEFINE _SQLPLUS_RELEASE = "1102000300" (CHAR)
    Oracle version 11.2.0.3 (11.2)
    Found /app/utiba/oracle/client/rdbms/lib/ins_rdbms.mk
    Using /app/utiba/oracle/client/rdbms/lib/ins_rdbms.mk
    Your LD_LIBRARY_PATH env var is set to '/app/utiba/oracle/client/lib:/lib:/usr/lib'
    Reading /app/utiba/oracle/client/rdbms/lib/ins_rdbms.mk
    Reading /app/utiba/oracle/client/rdbms/lib/env_rdbms.mk
    WARNING: Oracle /app/utiba/oracle/client/rdbms/lib/ins_rdbms.mk doesn't define a 'build' rule.
    WARNING: I will now try to guess how to build and link DBD::Oracle for you.
             This kind of guess work is very error prone and Oracle-version sensitive.
             It is possible that it won't be supported in future versions of DBD::Oracle.
             *PLEASE* notify dbi-users about exactly _why_ you had to build it this way.
    Found header files in /app/utiba/oracle/client/rdbms/public.
    client_version=11.2
    DEFINE= -Wall -Wno-comment -DUTF8_SUPPORT -DORA_OCI_VERSION=\"11.2.0.3\" -DORA_OCI_102 -DORA_OCI_112
    Checking for functioning wait.ph
    System: perl5.008008 linux builder10.centos.org 2.6.18-53.el5 #1 smp mon nov 12 02:14:55 est 2007 x86_64 x86_64 x86_64 gnulinux
    Compiler:   gcc -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/gdbm
    Linker:     /usr/bin/ld
    Sysliblist: -ldl -lm -lpthread -lnsl -lirc -lipgo
    Oracle makefiles would have used these definitions but we override them:
      CC:       $(GCC)
      CFLAGS:   $(GFLAG) $(OPTIMIZE) $(CDEBUG) $(CCFLAGS) $(PFLAGS)\
            $(SHARED_CFLAG) $(USRFLAGS)
               [$(GFLAG) -O2 $(CDEBUG) $(CCFLAGS) -I/app/utiba/oracle/client/rdbms/demo -I/app/utiba/oracle/client/rdbms/public -I/app/utiba/oracle/client/plsql/public -I/app/utiba/oracle/client/network/public -DLINUX -D_GNU_SOURCE -D_LARGEFILE64_SOURCE=1 -D_LARGEFILE_SOURCE=1 -DSLTS_ENABLE -DSLMXMX_ENABLE -D_REENTRANT -DNS_THREADS -DLDAP_CM $(LPFLAGS) $(PLSQLNCGFLAGS) $(USRFLAGS)]
      LDFLAGS:  -o $@ $(LDOBJSZ) $(LDPATHFLAG)$(PRODLIBHOME) $(LDPATHFLAG)$(LIBHOME) $(LDPATHFLAG)$(LIBHOME)stubs/ $(LDPATHFLAG)$(LIBHOME) $(LLIBIRC)
               [-o $@ -m32 -L/app/utiba/oracle/client/rdbms/lib/ -L$(LIBHOME) -L$(LIBHOME)stubs/ -L$(LIBHOME) -lirc -lipgo ]
    Linking with  -lclntsh -ldl -lm -lpthread -lnsl -lirc -lipgo -ldl -lm  [from $(OCISHAREDLIBS)]
    LD_RUN_PATH=/app/utiba/oracle/client/lib
    Using DBD::Oracle 1.50.
    Using DBD::Oracle 1.50.
    Using DBI 1.52 (for perl 5.008008 on x86_64-linux-thread-multi) installed in /usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi/auto/DBI/
    Writing Makefile for DBD::Oracle
    ***  If you have problems...
         read all the log printed above, and the README and README.help.txt files.
         (Of course, you have read README by now anyway, haven't you?)
    [root@tch1testuview1 DBD-Oracle-1.50]# make
    Skip blib/lib/DBD/Oracle/Troubleshooting/Cygwin.pod (unchanged)
    Skip blib/lib/DBD/Oracle.pm (unchanged)
    Skip blib/lib/oraperl.ph (unchanged)
    Skip blib/arch/auto/DBD/Oracle/Oracle.h (unchanged)
    Skip blib/lib/DBD/Oracle/Troubleshooting/Vms.pod (unchanged)
    Skip blib/lib/DBD/Oracle/Troubleshooting/Linux.pod (unchanged)
    Skip blib/lib/DBD/Oracle/GetInfo.pm (unchanged)
    Skip blib/lib/DBD/Oracle/Troubleshooting.pod (unchanged)
    Skip blib/arch/auto/DBD/Oracle/dbdimp.h (unchanged)
    Skip blib/lib/DBD/Oracle/Troubleshooting/Hpux.pm (unchanged)
    Skip blib/arch/auto/DBD/Oracle/ocitrace.h (unchanged)
    Skip blib/lib/Oraperl.pm (unchanged)
    Skip blib/lib/DBD/Oracle/Troubleshooting/Sun.pod (unchanged)
    Skip blib/lib/DBD/Oracle/Troubleshooting/Macos.pod (unchanged)
    Skip blib/lib/DBD/Oracle/Troubleshooting/Aix.pod (unchanged)
    Skip blib/lib/DBD/Oracle/Object.pm (unchanged)
    Skip blib/lib/DBD/Oracle/Troubleshooting/Win64.pod (unchanged)
    Skip blib/arch/auto/DBD/Oracle/mk.pm (unchanged)
    Skip blib/lib/DBD/Oracle/Troubleshooting/Win32.pod (unchanged)
    gcc -c  -I/app/utiba/oracle/client/rdbms/public -I/app/utiba/oracle/client/rdbms/demo -I/app/utiba/oracle/client/rdbms/public -I/app/utiba/oracle/client/plsql/public -I/app/utiba/oracle/client/network/public -I/usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi/auto/DBI -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/gdbm -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic   -DVERSION=\"1.50\" -DXS_VERSION=\"1.50\" -fPIC "-I/usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi/CORE"  -Wall -Wno-comment -DUTF8_SUPPORT -DORA_OCI_VERSION=\"11.2.0.3\" -DORA_OCI_102 -DORA_OCI_112 Oracle.c
    gcc -c  -I/app/utiba/oracle/client/rdbms/public -I/app/utiba/oracle/client/rdbms/demo -I/app/utiba/oracle/client/rdbms/public -I/app/utiba/oracle/client/plsql/public -I/app/utiba/oracle/client/network/public -I/usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi/auto/DBI -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/gdbm -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic   -DVERSION=\"1.50\" -DXS_VERSION=\"1.50\" -fPIC "-I/usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi/CORE"  -Wall -Wno-comment -DUTF8_SUPPORT -DORA_OCI_VERSION=\"11.2.0.3\" -DORA_OCI_102 -DORA_OCI_112 dbdimp.c
    dbdimp.c: In function ‘fb_ary_cb_alloc’:
    dbdimp.c:324: warning: comparison is always false due to limited range of data type
    dbdimp.c:325: warning: comparison is always false due to limited range of data type
    dbdimp.c:326: warning: comparison is always false due to limited range of data type
    dbdimp.c:327: warning: comparison is always false due to limited range of data type
    dbdimp.c:328: warning: comparison is always false due to limited range of data type
    dbdimp.c: In function ‘fb_ary_alloc’:
    dbdimp.c:344: warning: comparison is always false due to limited range of data type
    dbdimp.c:345: warning: comparison is always false due to limited range of data type
    dbdimp.c:346: warning: comparison is always false due to limited range of data type
    dbdimp.c:347: warning: comparison is always false due to limited range of data type
    gcc -c  -I/app/utiba/oracle/client/rdbms/public -I/app/utiba/oracle/client/rdbms/demo -I/app/utiba/oracle/client/rdbms/public -I/app/utiba/oracle/client/plsql/public -I/app/utiba/oracle/client/network/public -I/usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi/auto/DBI -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -I/usr/include/gdbm -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic   -DVERSION=\"1.50\" -DXS_VERSION=\"1.50\" -fPIC "-I/usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi/CORE"  -Wall -Wno-comment -DUTF8_SUPPORT -DORA_OCI_VERSION=\"11.2.0.3\" -DORA_OCI_102 -DORA_OCI_112 oci8.c
    oci8.c: In function ‘ora_blob_read_mb_piece’:
    oci8.c:1804: warning: comparison is always false due to limited range of data type
    oci8.c: In function ‘describe_obj_by_tdo’:
    oci8.c:3256: warning: comparison is always false due to limited range of data type
    oci8.c: In function ‘ora_describe’:
    oci8.c:3480: warning: comparison is always false due to limited range of data type
    oci8.c: In function ‘ora_st_fetch’:
    oci8.c:3953: warning: unused variable ‘imp_xxh’
    Running Mkbootstrap for DBD::Oracle ()
    chmod 644 Oracle.bs
    rm -f blib/arch/auto/DBD/Oracle/Oracle.so
    LD_RUN_PATH="/app/utiba/oracle/client/lib" gcc  -shared -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic Oracle.o dbdimp.o oci8.o  -o blib/arch/auto/DBD/Oracle/Oracle.so  \
               -L/app/utiba/oracle/client/lib/ -lclntsh -ldl -lm -lpthread -lnsl -lirc -lipgo -ldl -lm      \
    /usr/bin/ld: skipping incompatible /app/utiba/oracle/client/lib//libclntsh.so when searching for -lclntsh
    /usr/bin/ld: cannot find -lclntsh
    collect2: ld returned 1 exit status
    make: *** [blib/arch/auto/DBD/Oracle/Oracle.so] Error 1I am sure that installing a previous(older) version of oracle client will fix this issue i.e. either 11.2.0.1 or older (that is tested) but I want to know if it is possible to resolve the above issue with a work around and not having to install a previous version.
    Fyi.. I've tried to install DBD::Oracle version 1.24 and 1.50 but that doesn't seem to make any difference. I couldn't find any related thread either for this error so I desperately need a solution to the same(if any).
    If anyone can help here, would really appreciate it or else, I will have no choice but to install previous version of oracle client.
    Thanks
    Edited by: 956308 on Aug 31, 2012 6:55 AM
    Edited by: 956308 on Aug 31, 2012 6:57 AM

    Contents of the response file:
    oracle.install.responseFileVersion=http://www.oracle.com/2007/install/rspfmt_clientinstall_response_schema_v11_2_0
    ORACLE_HOSTNAME=slc00caz
    UNIX_GROUP_NAME=oracle
    INVENTORY_LOCATION=/home/psadm1/oraInventory
    SELECTED_LANGUAGES=en
    ORACLE_HOME=/opt/oracle/psft/pt/oracle-client/11.2.0.x
    ORACLE_BASE=/opt/oracle/psft/pt/oracle-client
    oracle.install.client.installType=Custom
    oracle.install.client.upgrading=false
    oracle.install.client.customComponents=oracle.rdbms.util:11.2.0.3.0,oracle.javavm.client:11.2.0.3.0,oracle.sqlplus:11.2.0.3.0,oracle.dbjava.jdbc:11.2.0.3.0,oracle.rdbms.oci:11.2.0.3.0,oracle.xdk:11.2.0.3.0,oracle.network.aso:11.2.0.3.0,oracle.assistants.oemlt:11.2.0.3.0,oracle.network.client:11.2.0.3.0,oracle.odbc:11.2.0.3.0,oracle.dbdev:11.2.0.3.0
    oracle.install.client.schedulerAgentHostName=
    oracle.install.client.schedulerAgentPortNumber=
    oracle.installer.autoupdates.option=SKIP_UPDATES
    oracle.installer.autoupdates.downloadUpdatesLoc=
    AUTOUPDATES_MYORACLESUPPORT_USERNAME=
    AUTOUPDATES_MYORACLESUPPORT_PASSWORD=
    PROXY_HOST=
    PROXY_PORT=0
    PROXY_USER=
    PROXY_PWD=
    PROXY_REALM=

  • Oracle Perl connectivity

    Friends ,
    I know that this is a PHP forum and not Perl .
    But I could not one suitable for Perl , so posting it here , just assumming that there may be many people with the knowledge .
    I am running Oracle 8.1.7 on Redhat Linux 8 , on IBM Pentium 4 PC.
    What I want is, I want to run Perl programs with Oracle interface . Want to interact with Oracle database .
    Please convey ,
    1) What type of software/driver/modules I have to install ? DBI or DBD or what ?
    2) Where from I can get that ?
    3) How to install that ( I know there will be documents for this ) ?
    Please help .
    Regards

    I believe you'll need both the DBI and DBD modules. You'll need the DBD (DB Driver) and the DBI (DB Interface) I would check them out at CPAN.org/modules.
    You can read through the modules.
    Also, if you are looking for perl BBs, the best place for that is general sites, like google groups. If you look around you'll find a vast wealth of knowledge from perl coders on interacting with databases in general. In fact, I heard from a friend that Apache now can directly interact with Oracle with pl/sql or sql with an Apache Module.
    Good Luck.
    TS

  • Oracles perl samples? where are they?

    otn has a bunch of html pages w/ instructions for running perl->dbi->oracle samples (hotel res. , guest book, hello, ect).
    these pages have links to get mod_perl, dbi, dbd , but nowhere can
    I find the perl sample code itself. help please, oracle. Miked

    Hi,
    You can find the perl samples developed by otn at http://otn.oracle.com/sample_code/products/ias/content.html
    Thanks,
    Sujatha
    OTN Team

  • Using perl with Oracle DB

    Hi,
    I have perl scripts to import csv data to an existing 9.2 oracle database 32bit. It is using DBI to connect. I am moving the database in question to 10gR2 windows X64. I want the scripts to follow and run on the new server.
    I know there is an install of perl in the oracle home. Is it intended to be used by oracle internally only?
    So my question is: should I install perl separately or could I use the one shipped with oracle?
    Best wishes!

    Of course.
    You are right if more modules are required, then adding them to the oracle perl would have potentially bad effects.
    The only thing I need really is to read files, call sqlloader, connect to the DB and run some stored procedures... I will be ok then. I already tested connectivity and it all looks fine.
    Thank you very much for the input!

  • Connect to Oracle database from Perl on Solaris x86

    Hi,
    How can I connect to Oracle database using Perl scripts on Solaris x86. It seems that DBD-Oracle Perl module requires Oracle client installed to work. Is there any Oracle client available for Solaris x86? Any one got a workaround? Thanks.
    Angus Lee

    Yes, you absolutely must have some portions of the rdbms installed before you can proceed. If your Solaris x86 machine is only a client, then you can get away with installing just ?/rdbms/mesg and ?/rdbms/lib.
    I have Oracle 7.3.4, 8.0.5, 8.0.6, and 8.1.6 for Intel Solaris 2.6. I don't know if they'll run on Solaris 8 or 9 but I'm trying to upgrade at this very moment. As long as you conform to Oracle developer license, then you may download them from my machine.
    I believe the reason Oracle dropped their Intel Solaris port is probably because Sun went through a period where they themselves dropped their Intel port. They've picked back up and if enough Oracle on Intel Solaris customers scream, then Oracle might pick it back up again too.
    Send me an email if you're interested in the downloads.

  • Issue with Connection Oracle 11.2 database from Perl.

    Hello,
    We are trying to connect oracle 11.2 database from a perl script. I have verified that DBD::ORACLE version is 1.19. The environment is linux environment. Linux is SuSE linux and version is 10 SP1.
    The code we are executing is
    ============
    #!/usr/bin/perl -w
    use strict;
    use DBI;
    my $db = DBI->connect( "dbi:Oracle:SID", "USERID", "XXXXXX" )
    || die( $DBI::errstr . "\n" );
    my $SEL = "SELECT sysdate FROM DUAL";
    my $sth = $db->prepare($SEL);
    $sth->execute();
    my($cdate);
    while ( $sth->fetch() ) {
    Print "DATE: $cdate\n";
    $sth->finish() ;
    =======================
    We are receiving following error:
    install_driver(oracle) failed: Can't locate DBD/oracle.pm in @INC (@INC contains
    b/perl5/site_perl/5.8.8/x86_64-linux-thread-multi /usr/lib/perl5/site_perl/5.8.8
    d-multi /usr/lib/perl5/vendor_perl/5.8.8 /usr/lib/perl5/vendor_perl .) at (eval
    Perhaps the DBD::oracle perl module hasn't been fully installed,
    or perhaps the capitalisation of 'oracle' isn't right.
    Available drivers: DBM, ExampleP, File, Oracle, Proxy, Sponge, mysql.
    at ./conn_db.pl line 4
    Please let us knowhow to resolve the issue?

    Are you sure DBD::Oracle is properly installed? I recommend you check DBD::Oracle installation and reinstall it if necessary. Also remember to read carefully README.txt note installation for your distro.

  • Oracle installation not proceeding further still 0%

    Dear Experts
    i'm install ECC5.0 on Fedoracore 6 with Oracle 9 as DB while i start the oracle installation it seemed to hanged somewhere ,there showing
    "linking pending........"
    coping README......
    pls check the log file which is given below
    Environment variables:
         ORACLE_HOME = /oracle/QTY/920_32
         PATH = /usr/bin:/usr/ccs/bin:/bin:/bin:/usr/bin:/sbin:/usr/sbin:/oracle/QTY/920_32/bin:.:/oracle/QTY:/usr/sap/QTY/SYS/exe/runU:/usr/sap/QTY/SYS/exe/run:/usr/lib/qt-3.3/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/lib/ccache:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
         CLASSPATH =
    Username is: oraqty
    This installation is being performed using response file /tmp/.orainst_rsp.19981.Unable to read the list of homes from the inventory.
    The installer version is 2.2.0.12.0
    Welcome Page***
    This installation is being performed using response file /tmp/.orainst_rsp.19981.
    Setting value of UNIX_GROUP_NAME to dba
    Setting value of FROM_LOCATION to /oracle/stage/920_32/Disk1/stage/products.jar
    Setting value of ORACLE_HOME_NAME to QTY_920_32
    Setting value of ORACLE_HOME to /oracle/QTY/920_32
    Setting value of TOPLEVEL_COMPONENT to oracle.server,9.2.0.1.0,
    Setting value of SHOW_SPLASH_SCREEN to false
    Setting value of SHOW_WELCOME_PAGE to false
    Setting value of SHOW_CUSTOM_TREE_PAGE to true
    Setting value of SHOW_COMPONENT_LOCATIONS_PAGE to false
    Setting value of SHOW_SUMMARY_PAGE to false
    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 false
    Setting value of SHOW_RELEASE_NOTES to false
    Setting value of SHOW_ROOTSH_CONFIRMATION to true
    Setting value of SHOW_END_SESSION_PAGE to true
    Setting value of SHOW_EXIT_CONFIRMATION to true
    Setting value of NEXT_SESSION to false
    Setting value of NEXT_SESSION_ON_FAIL to false
    Setting value of SHOW_DEINSTALL_CONFIRMATION to true
    Setting value of SHOW_DEINSTALL_PROGRESS to true
    Setting value of INVENTORY_LOCATION to /oracle/QTY/oraInventory
    Setting value of UNIX_GROUP_NAME to 
    Setting value of UNIX_GROUP_NAME to dba
    UNIX Group Name Page***
    UnixInstallGroup = UNIX_GROUP_NAME = dba
    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 /oracle/stage/920_32/Disk1/stage/products.jar
    Setting value of ORACLE_HOME to /oracle/QTY/920_32
    Setting value of ORACLE_HOME_NAME to QTY_920_32
    File Locations Page***
    FromLocation = FROM_LOCATION = /oracle/stage/920_32/Disk1/stage/products.jar
    ToLocation = ORACLE_HOME = /oracle/QTY/920_32
    ToName = ORACLE_HOME_NAME = QTY_920_32
    Initializing installer access setup
    Setting value of ORACLE_HOME to /oracle/QTY/920_32
    Setting value of LOCATION_FOR_DISK2 to ../../Disk2
    Setting value of LOCATION_FOR_DISK3 to ../../Disk3
    Setting value of ToplevelComp to oracle.server, 9.2.0.1.0, >0.0.0.0.0, [ 46 ][OH:2]
    Setting value of ToplevelComps to [Loracle.sysman.oii.oiii.OiiiCompInstallID;@9ea96
    Setting value of COMPONENT_LANGUAGES to en,
    Setting value of SELECTED_LANGUAGES to [en]
    Setting value of PROD_HOME to /oracle/QTY/oraInventory/../oui
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.oid.oradas
    Setting value of PROD_HOME to /oracle/QTY/920_32/jewt
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_fonts
    Setting value of PROD_HOME to /oracle/QTY/920_32/rts
    Setting value of PROD_HOME to /oracle/QTY/920_32/jpi
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_tools_developer_balicomp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_soap_client
    Setting value of PROD_HOME to /oracle/QTY/920_32/jdk
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.assistants
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.utilities
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_repapi
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.p2k.sqlmod
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_olap_shiphome_driver
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.java.ojsp.jsp_server
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.java.ejb
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.apache.mod8i
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_apache_ejb
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.server
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.options
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.options.ops
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.options.partitioning
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.cartridges.spatial
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.rdbms.lsm
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.client
    Setting value of PROD_HOME to /oracle/QTY/920_32/olap
    Setting value of PROD_HOME to /oracle/QTY/920_32/dmt
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.infrastructure
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.networking
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emprod
    Setting value of PROD_HOME to /oracle/QTY/920_32/wf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emprod.agent_ext
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_utilities_util
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_dbv
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_mig
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.p2k.devtools
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_oci_top
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_otrace
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.options.intermedia.imserver
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.cartridges.locator
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emprod.agent_ext.oapps_agentext
    Setting value of PROD_HOME to /oracle/QTY/920_32/oem_webstage
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_sysman_reporting
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_ldap_rsf_cmp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.options.ano
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_javavm_cmp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.networking.cman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_prod
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.networking.netsrv
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_hs_odbc
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.networking.names
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_sysman_webserver
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_hs_common
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.interMedia.imclient
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_prod
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.cartridges.context
    Setting value of PROD_HOME to /oracle/QTY/920_32/Apache/Apache
    Setting value of PROD_HOME to /oracle/QTY/920_32/soap
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emcltprod
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_xml
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emprod.agent_ext.frms_agentext
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_expimp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_dbscripts
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_nid
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.p2k
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracel_rdbms_sqlldr
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.apache.ojsp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emprod.agent_ext.emd_agentext
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_prod
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emprod.agent_ext.oecm_agentext
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emprod.agent_ext.ows_agentext
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emprod.oemagent
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emprod.oemagent.agentca
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_prod
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.cartridges.ordsmv
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.cartridges.ordaudio
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.cartridges.ordimg
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.options.intermedia.imcom
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.cartridges.ordcom
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman/ocm
    Setting value of PROD_HOME to /oracle/QTY/920_32/soap
    Setting value of PROD_HOME to /oracle/QTY/920_32/soap
    Setting value of PROD_HOME to /oracle/QTY/920_32/BC4J
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.interMedia.imclient
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.interMedia.imclient
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.interMedia.imclient
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.interMedia.imclient
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.options.intermedia.jai
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.rdbms.ovm
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.apache.xdk
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_p2k_xmldevkit
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_demo
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_p2k_xmldevkit
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.options.ano.sns
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.networking.netmgr.emint
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_xml_parser_cplus
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_xml_xsql
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_xml_parser_plsql
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.java.ojsp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_sqlj
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_xml_classgen_java
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_xml_transview
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_xml_transx
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.xml.xml_ncomp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_xml_classgen_cplus
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.networking.netcltprod
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.networking.netclt
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_options_ano_ssl
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.networking.netmgr
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_xml_xsu
    Setting value of PROD_HOME to /oracle/QTY/920_32/ohw
    Setting value of PROD_HOME to /oracle/QTY/920_32/uix
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32/demo/schema
    Setting value of PROD_HOME to /oracle/QTY/920_32/mgw
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_seeddb
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_seeddb
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_seeddb
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_advrep
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emprod.oemagent.base_oemagent
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.assistants.dbma
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.webdb.modplsql
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_rman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_prod
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_occi
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_prod
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.p2k.proc
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.olap.cv
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_oci
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.rdbms.sqlplus
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_options_ano_ssl_owm
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.assistants.dbca
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.p2k.ott
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.p2k.precomp_common
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_networking_netca
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_expimp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.assistants.acf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_utilities_util_common
    Setting value of PROD_HOME to /oracle/QTY/920_32/help
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_xml_parser_c
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_plsql
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_sqlj_sqljtrans
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.xml.parser.java
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_nlsrtl_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_oracore_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.interMedia.imclient
    Setting value of PROD_HOME to /oracle/QTY/920_32/Apache/Jserv
    Setting value of PROD_HOME to /oracle/QTY/920_32/Apache/Jsdk
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_net_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/ocs4j
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_aqapi
    Setting value of PROD_HOME to /oracle/QTY/920_32/parser_java
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_sqlj_sqljruntime
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc_oci11
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc_oci12
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc_oci14
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc_thin12
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc_thin14
    Setting value of PROD_HOME to /oracle/QTY/920_32/Apache/Apache
    Setting value of PROD_HOME to /oracle/QTY/920_32/Apache/perl
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_sysman_oembase_ela
    Setting value of PROD_HOME to /oracle/QTY/920_32/jle
    Setting value of PROD_HOME to /oracle/QTY/920_32/dcommon
    Setting value of PROD_HOME to /oracle/QTY/920_32/oem_webstage
    Setting value of PROD_HOME to /oracle/QTY/920_32/dbui
    Setting value of PROD_HOME to /oracle/QTY/920_32/kodiak
    Setting value of PROD_HOME to /oracle/QTY/920_32/help
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.java.javavm.javatools
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32/jdk
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_javavm_visiorb
    Setting value of PROD_HOME to /oracle/QTY/920_32/j2ee_core
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32/jewt
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_options_olap_api
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_olap_wrksht
    Setting value of PROD_HOME to /oracle/QTY/920_32/regexp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_fonts
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.sysman.prereq
    Setting value of PROD_HOME to /oracle/QTY/920_32/ice
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_platform_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_sysman_sqlserver
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/lib
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_plsql_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_precomp_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_slax_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_ssl_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_ldap_rsf_cmp
    Setting value of PROD_HOME to /oracle/QTY/920_32/ewt
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_doc_unixdoc
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_agent_rsf_agent_rsf_cmp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc_thin11
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc_oci_common
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_clntsh_rsf_clntsh_rsf_cmp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_otrace_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.options.ops.opsca
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_install_instcommon
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc_jdbc_common
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_rdbms_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_rdbms_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_dbjava_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.rsf.sqlplus_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_tools_share
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.options.ops.clustermgr
    Setting value of PROD_HOME to /oracle/QTY/oraInventory/../oui
    Unable to read /oracle/QTY/oraInventory/ContentsXML/comps.xml. Some inventory information may be lost.
    Calling query areasQueries2.2.0.7.0  getInventoryLocation
    Query returned : /oracle/QTY/oraInventory
    Setting value of PROD_HOME to /oracle/QTY/oraInventory\..\jre\1.3.1
    Calling query areasQueries2.2.0.7.0  getInventoryLocation
    Query returned : /oracle/QTY/oraInventory
    Setting value of PROD_HOME to /oracle/QTY/oraInventory\..\jre\1.1.8
    Doing operation for installer access setup
    Available Products Page***
    TopLevelComp = ToplevelComp = oracle.server, 9.2.0.1.0, >0.0.0.0.0, [ 46 ][OH:2]
    Setting value of ToplevelComp to oracle.server, 9.2.0.1.0, >0.0.0.0.0, [ 46 ][OH:2]
    Setting value of INSTALL_TYPE to Custom
    Setting value of DEP_MODE to Custom
    Setting value of TLDepModes to Custom,
    Installation Types Page***
    DepMode = DEP_MODE = Custom
    TLDepModes = TLDepModes = Custom,
    The selected install type is "Custom"
    Setting value of DEP_MODE to Custom
    Install type for "Oracle9i Database 9.2.0.1.0 " is "Custom"
    Not all the dependencies for the component Oracle9i Database 9.2.0.1.0  are found. Missing Component oracle.tg 9.2.0.1.0.
    Install type for "Enterprise Edition Options 9.2.0.1.0 " is "Custom"
    Install type for "Oracle9i Real Application Clusters 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Partitioning 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Spatial 9.2.0.1.0 " is "Custom"
    Install type for "Legato Networker Single Server 6.1.0.0.0 " is "Custom"
    Install type for "Oracle OLAP 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Data Mining 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Net Services 9.2.0.1.0 " is "Server.Custom"
    Install type for "Oracle Enterprise Manager Products 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Intelligent Agent Extensions 9.2.0.1.0 " is "Custom"
    Install type for "Oracle9i 9.2.0.1.0 " is "Custom"
    Not all the dependencies for the component Oracle9i 9.2.0.1.0  are found. Missing Component oracle.rdbms.hs_olefs 9.2.0.1.0.
    Not all the dependencies for the component Oracle9i 9.2.0.1.0  are found. Missing Component oracle.rdbms.hs_olesql 9.2.0.1.0.
    Not all the dependencies for the component Oracle9i 9.2.0.1.0  are found. Missing Component oracle.rdbms.hybrid 9.2.0.1.0.
    Install type for "Oracle Database Utilities 9.2.0.1.0 " is "Custom"
    Install type for "Database Verify Utility 9.2.0.1.0 " is "Custom"
    Install type for "Migration Utility 9.2.0.1.0 " is "Custom"
    Install type for "Oracle9i Development Kit 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Trace 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia 9.2.0.1.0 " is "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 "Custom"
    Install type for "Oracle Applications Extensions 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Web Site 9.2.0.1.0 " is "Complete"
    Install type for "Reporting Framework 9.2.0.1.0 " is "Complete"
    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 Advanced Security 9.2.0.1.0 " is "Custom"
    Not all the dependencies for the component Oracle Advanced Security 9.2.0.1.0  are found. Missing Component oracle.options.ano.dce 9.2.0.1.0.
    Install type for "Oracle JVM 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Connection Manager 9.2.0.1.0 " is "Custom"
    Install type for "Oracle9i Syndication Server 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Net Listener 9.2.0.1.0 " is "Custom"
    Install type for "Generic Connectivity Using ODBC 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Names 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Webserver Integration 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Ultra Search Middle-Tier 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Internet Directory Client 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Oracle JDBC Thin Driver for JDK 1.2 9.2.0.1.0 "  to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Generic Connectivity Common Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia Client Option 9.2.0.1.0 " is "Custom"
    Install type for "iSQL*Plus 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Text 9.2.0.1.0 " is "Custom"
    Install type for "Oracle HTTP Server 9.2.0.1.0 " is "Custom"
    Install type for "Oracle SOAP for JServ 2.0.0.0.0a " is "Custom"
    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 "XML 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "XML Parser for Java 9.2.0.1.0 "  to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Forms Extensions 9.2.0.1.0 " is "Custom"
    Install type for "Export/Import 9.2.0.1.0 " is "Custom"
    Install type for "Database SQL Scripts 9.2.0.1.0 " is "Custom"
    Install type for "New Database ID 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Tuning Pack 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Programmer 9.2.0.1.0 " is "Custom"
    Install type for "SQL*Loader 9.2.0.1.0 " is "Custom"
    Install type for "Apache Configuration for Oracle Java Server Pages 1.1.2.3.0 " is "Custom"
    Install type for "Oracle EMD Agent Extensions 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Dynamic Services Server 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Ultra Search Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle eBusiness Management Extensions 9.2.0.1.0 " is "Custom"
    Install type for "Oracle HTTP Server Extensions 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Intelligent Agent 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Management Pack for Oracle Standard Edition 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Intelligent Agent Config Tool 9.2.0.1.0 " is "Custom"
    Install type for "PL/SQL Embedded Gateway 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia Annotator 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Management Pack for Oracle Applications 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Change Management Pack 9.2.0.1.0 " is "Complete"
    Install type for "Oracle interMedia Video 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia Audio 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia Image 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia Common Files 9.2.0.1.0 " is "Custom"
    Install type for "Data Management Services Common Files 9.2.0.1.0 " is "Custom"
    Install type for "Change Management Common Files 9.2.0.1.0 " is "Complete"
    Install type for "Oracle SOAP Server 2.0.0.0.0a " is "Custom"
    Install type for "Oracle SOAP Client 2.0.0.0.0a " is "Custom"
    Install type for "BC4J Runtime for Database 9.0.2.692.1 " is "Custom"
    Install type for "Oracle interMedia Web Client 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia Client Demos 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia Java Media Framework Client 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia Client Compatibility Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia Java Advanced Imaging 9.2.0.1.0 " is "Custom"
    Install type for "Database Workspace Manager 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Client 9.2.0.1.0 " is "Custom"
    Install type for "Apache Configuration for Oracle XML Developer's Kit 9.2.0.1.0 " is "Custom"
    Install type for "Oracle XML Developer's Kit 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Integrated Applications 9.2.0.1.0 " is "Complete"
    Not all the dependencies for the component Enterprise Manager Integrated Applications 9.2.0.1.0  are found. Missing Component oracle.sysman.wf.client 9.2.0.1.0.
    Install type for "Enterprise Manager Console 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Database Applications 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Database Demos 9.2.0.1.0 " is "Custom"
    Install type for "Oracle XML Runtime Components 9.2.0.1.0 " is "Custom"
    Install type for "Authentication and Encryption 9.2.0.1.0 " is "Custom"
    Not all the dependencies for the component Authentication and Encryption 9.2.0.1.0  are found. Missing Component oracle.options.ano.sns.hybrid 9.2.0.1.0.
    Install type for "Enterprise Manager Common Files 9.2.0.1.0 " is "Complete"
    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 "XSQL Servlet 9.2.0.1.0 " is "Custom"
    Install type for "XML Parser for PL/SQL 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Java Server Pages 1.1.3.1.0 " is "Custom"
         Conflict while setting install type of "Oracle JDBC/OCI Driver for JDK 1.1 9.2.0.1.0 "  to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle SQLJ 9.2.0.1.0 " is "Custom"
    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 "Custom"
    Install type for "Oracle Net 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)"
         Conflict while setting install type of "Oracle Net Manager 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 Net Configuration Assistant 9.2.0.1.0 "  to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Secure Socket Layer 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Net Manager 9.2.0.1.0 " is "Custom"
    Install type for "Oracle XML SQL Utility 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Help for the  Web 1.0.7.0.0 " is "Complete"
    Install type for "Oracle UIX 2.0.21.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 "Oracle Internet Directory Tools 9.2.0.1.0 " is "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 "Custom"
    Install type for "Oracle Starter Database 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Complete OLTP Starter Database 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Complete DSS Starter Database 9.2.0.1.0 " is "Custom"
    Install type for "Advanced Replication 9.2.0.1.0 " is "Custom"
    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)"
    Not all the dependencies for the component Oracle Intelligent Agent Base Component Files 9.2.0.1.0  are found. Missing Component oracle.rsf.hybrid 9.2.0.1.0.
    Install type for "Database Upgrade Assistant 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Enterprise Manager Base Classes 9.2.0.1.0 "  to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Install type for "Oracle Mod PL/SQL Gateway 3.0.9.8.3b " is "Typical"
    Install type for "Recovery Manager 9.2.0.1.0 " is "Custom"
    Install type for "Oracle9i Real Application Clusters Guard 9.2.0.1.0 " is "Custom"
    Install type for "Oracle C++ Call Interface 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Login Assistant 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Label Security 9.2.0.1.0 " is "Custom"
    Install type for "Pro*C/C++ 9.2.0.1.0 " is "Custom"
    Install type for "Oracle OLAP CWM Lite 9.2.0.1.0 " is "Custom"
    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 Call Interface (OCI) 9.2.0.1.0 " is "Custom"
    Install type for "SQL*Plus 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Wallet Manager 9.2.0.1.0 " is "Custom"
    Install type for "Database Configuration Assistant 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)"
    Install type for "Object Type Translator 9.2.0.1.0 " is "Custom"
    Install type for "Oracle JDBC/OCI Interfaces 9.2.0.1.0 " is "Custom"
    Install type for "Precompiler Common Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Net Configuration Assistant 9.2.0.1.0 " is "Custom"
    Install type for "Character Set Migration Utility 9.2.0.1.0 " is "Custom"
    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 "Utilities Common Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Help For Java 3.2.13.0.0 " is "Custom"
         Conflict while setting install type of "Bali Share 1.1.17.0.0 "  to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "PL/SQL 9.2.0.1.0 " is "Custom"
    Install type for "SQLJ Translator 9.2.0.1.0 " is "Custom"
    Install type for "XML Parser for Java 9.2.0.1.0 " is "Custom"
    Install type for "Required Support Files 9.2.0.1.0 " is "Custom"
    Not all the dependencies for the component Required Support Files 9.2.0.1.0  are found. Missing Component oracle.rsf.hybrid 9.2.0.1.0.
    Install type for "Oracle9i Globalization Support 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Core Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia Java Client 9.2.0.1.0 " is "Custom"
    Install type for "Apache JServ 1.1.0.0.0g " is "Custom"
    Install type for "JSDK 2.0.0.0.0d " is "Custom"
    Install type for "Oracle Net Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Caching Service for Java 2.1.0.0.0a " is "Custom"
    Install type for "Advanced Queueing (AQ) API 9.2.0.1.0 " is "Custom"
    Install type for "XML Parser 9.0.2.0.0 " is "Typical"
    Install type for "SQLJ Runtime 9.2.0.1.0 " is "Custom"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.1 9.2.0.1.0 " is "Custom"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.2 9.2.0.1.0 " is "Custom"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.4 9.2.0.1.0 " is "Custom"
    Install type for "Oracle JDBC Thin Driver for JDK 1.2 9.2.0.1.0 " is "Custom"
    Install type for "Oracle JDBC Thin Driver for JDK 1.4 9.2.0.1.0 " is "Custom"
    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 "Custom"
    Install type for "Enterprise Manager Minimal Integration 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Java Layout Engine 2.0.1.0.0 " is "Complete"
    Install type for "Documentaion Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manage Website Translated Files 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Database User Interface 2.2.11.0.0 " is "Custom"
    Install type for "Oracle Code Editor 1.2.1.0.0A " is "Custom"
    Install type for "Oracle Help For Java 4.1.13.0.0 " is "Custom"
    Install type for "Enterprise Manager Paging and OMS Common Files 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Java Tools 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Java Runtime Environment 1.1.8.1.0 "  to "Custom (Custom)". Install type already set to "Maximum (Complete)". Seting it to "Custom (Custom)"
    Install type for "Oracle Directory Manager 9.2.0.1.0 " is "Complete"
    Install type for "Sun JDK 1.3.1.0.1a " is "Custom"
    Install type for "Visigenics ORB 3.4.0.0.0 " is "Custom"
    Install type for "Java J2EE Core 9.0.2.0.0 " is "Typical"
    Install type for "Oracle Internet Directory Client Common Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle JFC Extended Windowing Toolkit 4.1.10.0.0 " is "Custom"
    Install type for "Oracle OLAP API 9.2.0.1.0 " is "Custom"
    Install type for "Oracle OLAP Worksheet 9.2.0.1.0 " is "Custom"
    Install type for "regexp 2.0.21.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 "Enterprise Manager Base Classes 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 "Oracle Ice Browser 5.06.8.0.0 " is "Custom"
    Install type for "Platform Required Support Files 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 "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 "Sun JDK extensions 9.2.0.1.0 " is "Custom"
    Install type for "PL/SQL 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 "Parser Generator Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "SSL 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 "Oracle Extended Windowing Toolkit 3.4.13.0.0 " is "Custom"
    Install type for "Oracle9i for UNIX Documentation 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 JDBC Thin Driver for JDK 1.1 9.2.0.1.0 " is "Custom"
    Install type for "Oracle JDBC Development Drivers 9.2.0.1.0 " is "Custom"
    Install type for "JDBC/OCI Common 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 Trace Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle9i Real Application Clusters Management 9.2.0.1.0 " is "Custom"
    Install type for "Installation Common Files 9.2.0.1.0 " is "Custom"
    Install type for "JDBC Common 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 "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 "SQL*Plus 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 "Oracle Universal Installer 2.2.0.12.0 " is "Custom"
    Install type for "Java Runtime Environment 1.3.1.0.0 " is "Custom"
    Install type for "Java Runtime Environment 1.1.8.1.0 " is "Custom"
    Calling query areasQueries2.2.0.7.0  getComponentInstallTypeName
    Query returned : Custom
    Calling query generalQueries2.2.0.7.0  getOSName
    Query returned : Linux
    Calling query generalQueries2.2.0.7.0  getOSVer
    Query returned : 2.6.18-1.2798.fc6xen
    Calling query generalQueries2.2.0.7.0  isCurrentPlatformInGroup
    platGroup = WINDOWS
    Query returned : false
    Calling query areasQueries2.2.0.7.0  productInstalled
    location = /oracle/QTY/920_32
    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 = /oracle/QTY/920_32
    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 = /oracle/QTY/920_32
    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 = /oracle/QTY/920_32
    name = oracle.install.instcommon
    startVersion = 8.1.3.0.0
    endVersion = 9.0.0.0.0
    acceptCompatible = null
    Query returned : false
    Calling query areasQueries2.2.0.7.0  productInstalled
    location = /oracle/QTY/920_32
    name = oracle.install.instcommon
    startVersion = 8.1.3.0.0
    endVersion = 9.0.0.0.0
    acceptCompatible = null
    Query returned : false
    Calling query rgsQueries2.2.0.7.0  isProductInstalled
    Location = /oracle/QTY/920_32
    InternalName = ocommon
    MaxVersion = 8.0.7
    MinVersion = 7.3.2
    Query returned : false
    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 DEPENDENCY_LIST to oracle.rdbms,9.2.0.1.0,oracle.options,9.2.0.1.0,oracle.networking,9.2.0.1.0,oracle.p2k.devtools,9.2.0.1.0,oracle.java.jdbc,9.2.0.1.0,oracle.doc.unixdoc,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.rdbms,9.2.0.1.0,oracle.options,9.2.0.1.0,oracle.networking,9.2.0.1.0,oracle.p2k.devtools,9.2.0.1.0,oracle.java.jdbc,9.2.0.1.0,oracle.doc.unixdoc,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.rdbms,9.2.0.1.0,oracle.options,9.2.0.1.0,oracle.networking,9.2.0.1.0,oracle.p2k.devtools,9.2.0.1.0,oracle.java.jdbc,9.2.0.1.0,oracle.doc.unixdoc,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.rdbms,9.2.0.1.0,oracle.options,9.2.0.1.0,oracle.networking,9.2.0.1.0,oracle.p2k.devtools,9.2.0.1.0,oracle.java.jdbc,9.2.0.1.0,oracle.doc.unixdoc,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.rdbms,9.2.0.1.0,oracle.options,9.2.0.1.0,oracle.networking,9.2.0.1.0,oracle.p2k.devtools,9.2.0.1.0,oracle.java.jdbc,9.2.0.1.0,oracle.doc.unixdoc,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.rdbms,9.2.0.1.0,oracle.options,9.2.0.1.0,oracle.networking,9.2.0.1.0,oracle.p2k.devtools,9.2.0.1.0,oracle.java.jdbc,9.2.0.1.0,oracle.doc.unixdoc,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.rdbms,9.2.0.1.0,oracle.options,9.2.0.1.0,oracle.networking,9.2.0.1.0,oracle.p2k.devtools,9.2.0.1.0,oracle.java.jdbc,9.2.0.1.0,oracle.doc.unixdoc,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.rdbms,9.2.0.1.0,oracle.options,9.2.0.1.0,oracle.networking,9.2.0.1.0,oracle.p2k.devtools,9.2.0.1.0,oracle.java.jdbc,9.2.0.1.0,oracle.doc.unixdoc,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.rdbms,9.2.0.1.0,oracle.options,9.2.0.1.0,oracle.networking,9.2.0.1.0,oracle.p2k.devtools,9.2.0.1.0,oracle.java.jdbc,9.2.0.1.0,oracle.doc.unixdoc,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.cartridges.spatial,9.2.0.1.0,oracle.options.partitioning,9.2.0.1.0,
    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 DEPENDENCY_LIST to oracle.cartridges.spatial,9.2.0.1.0,oracle.options.partitioning,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.cartridges.spatial,9.2.0.1.0,oracle.options.partitioning,9.2.0.1.0,
    Calling query generalQueries2.2.0.7.0  isCurrentPlatformInGroup
    platGroup = UNIX
    Query returned : true
    Calling query areasQueries2.2.0.7.0  getGroupLocation
    groupName = lsminst
    Query returned : /oracle/stage/920_32/Disk1/stage/Components/oracle.rdbms.lsm/6.1.0.0.0/1/DataFiles/Expanded/lsminst/rdbms/install/lgto
    Calling query SpawnQueries1.1.1  Spawn
    command = /oracle/stage/920_32/Disk1/lgto/lsminst
    Query returned : 0
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.cartridges.spatial,9.2.0.1.0,oracle.options.partitioning,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.cartridges.spatial,9.2.0.1.0,oracle.options.partitioning,9.2.0.1.0,
    Setting value of DEPENDENCY_LIST to oracle.cartridges.spatial,9.2.0.1.0,oracle.options.partitioning,9.2.0.1.0,
    Setting value of DEPENDENCY_LIST to oracle.cartridges.spatial,9.2.0.1.0,oracle.options.partitioning,9.2.0.1.0,
    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.
    Setting value of PRE_REQUISITE to true
    Calling query generalQueries2.2.0.7.0  isCurrentPlatformInGroup
    platGroup = UNIX
    Query returned : true
    Calling query rgsQueries2.2.0.7.0  isProductInstalled
    Location = /oracle/QTY/920_32
    InternalName = ocommon
    MaxVersion = 8.0.7
    MinVersion = 7.3.2
    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 DEPENDENCY_LIST to oracle.networking.netsrv,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.networking.netsrv,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.networking.netsrv,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.emprod.oemagent,9.2.0.1.0,oracle.sysman.website,9.2.0.1.0,oracle.sysman.oms,9.2.0.1.0,oracle.sysman.client,9.2.0.1.0,oracle.sysman.pack.change,9.2.0.1.0,oracle.sysman.pack.diag,9.2.0.1.0,oracle.sysman.pack.tuning,9.2.0.1.0,oracle.sysman.pack.apps,9.2.0.1.0,
    Setting value of DEPENDENCY_LIST to oracle.emprod.oemagent,9.2.0.1.0,oracle.sysman.website,9.2.0.1.0,oracle.sysman.oms,9.2.0.1.0,oracle.sysman.client,9.2.0.1.0,oracle.sysman.pack.change,9.2.0.1.0,oracle.sysman.pack.diag,9.2.0.1.0,oracle.sysman.pack.tuning,9.2.0.1.0,oracle.sysman.pack.apps,9.2.0.1.0,
    Setting value of DEPENDENCY_LIST to oracle.emprod.oemagent,9.2.0.1.0,oracle.sysman.website,9.2.0.1.0,oracle.sysman.oms,9.2.0.1.0,oracle.sysman.client,9.2.0.1.0,oracle.sysman.pack.change,9.2.0.1.0,oracle.sysman.pack.diag,9.2.0.1.0,oracle.sysman.pack.tuning,9.2.0.1.0,oracle.sysman.pack.apps,9.2.0.1.0,
    Calling query generalQueries2.2.0.7.0  isCurrentPlatformInGroup
    platGroup = Windows
    Query returned : false
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.emprod.oemagent,9.2.0.1.0,oracle.sysman.website,9.2.0.1.0,oracle.sysman.oms,9.2.0.1.0,oracle.sysman.client,9.2.0.1.0,oracle.sysman.pack.change,9.2.0.1.0,oracle.sysman.pack.diag,9.2.0.1.0,oracle.sysman.pack.tuning,9.2.0.1.0,oracle.sysman.pack.apps,9.2.0.1.0,
    Setting value of DEPENDENCY_LIST to oracle.emprod.oemagent,9.2.0.1.0,oracle.sysman.website,9.2.0.1.0,oracle.sysman.oms,9.2.0.1.0,oracle.sysman.client,9.2.0.1.0,oracle.sysman.pack.change,9.2.0.1.0,oracle.sysman.pack.diag,9.2.0.1.0,oracle.sysman.pack.tuning,9.2.0.1.0,oracle.sysman.pack.apps,9.2.0.1.0,
    Setting value of DEPENDENCY_LIST to oracle.emprod.oemagent,9.2.0.1.0,oracle.sysman.website,9.2.0.1.0,oracle.sysman.oms,9.2.0.1.0,oracle.sysman.client,9.2.0.1.0,oracle.sysman.pack.change,9.2.0.1.0,oracle.sysman.pack.diag,9.2.0.1.0,oracle.sysman.pack.tuning,9.2.0.1.0,oracle.sysman.pack.apps,9.2.0.1.0,
    Setting value of DEPENDENCY_LIST to oracle.emprod.oemagent,9.2.0.1.0,oracle.sysman.website,9.2.0.1.0,oracle.sysman.oms,9.2.0.1.0,oracle.sysman.client,9.2.0.1.0,oracle.sysman.pack.change,9.2.0.1.0,oracle.sysman.pack.diag,9.2.0.1.0,oracle.sysman.pack.tuning,9.2.0.1.0,oracle.sysman.pack.apps,9.2.0.1.0,
    Setting value of DEPENDENCY_LIST to oracle.emprod.oemagent,9.2.0.1.0,oracle.sysman.website,9.2.0.1.0,oracle.sysman.oms,9.2.0.1.0,oracle.sysman.client,9.2.0.1.0,oracle.sysman.pack.change,9.2.0.1.0,oracle.sysman.pack.diag,9.2.0.1.0,oracle.sysman.pack.tuning,9.2.0.1.0,oracle.sysman.pack.apps,9.2.0.1.0,
    Setting value of DEPENDENCY_LIST to oracle.emprod.oemagent,9.2.0.1.0,oracle.sysman.website,9.2.0.1.0,oracle.sysman.oms,9.2.0.1.0,oracle.sysman.client,9.2.0.1.0,oracle.sysman.pack.change,9.2.0.1.0,oracle.sysman.pack.diag,9.2.0.1.0,oracle.sysman.pack.tuning,9.2.0.1.0,oracle.sysman.pack.apps,9.2.0.1.0,
    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 DEPENDENCY_LIST to oracle.rdbms.occi,9.2.0.1.0,oracle.rdbms.oci,9.2.0.1.0,oracle.p2k,9.2.0.1.0,oracle.p2k.xmldevkit,9.2.0.1.0,
    Setting value of DEPENDENCY_LIST to oracle.rdbms.occi,9.2.0.1.0,oracle.rdbms.oci,9.2.0.1.0,oracle.p2k,9.2.0.1.0,oracle.p2k.xmldevkit,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.rdbms.occi,9.2.0.1.0,oracle.rdbms.oci,9.2.0.1.0,oracle.p2k,9.2.0.1.0,oracle.p2k.xmldevkit,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.rdbms.occi,9.2.0.1.0,oracle.rdbms.oci,9.2.0.1.0,oracle.p2k,9.2.0.1.0,oracle.p2k.xmldevkit,9.2.0.1.0,
    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 DEPENDENCY_LIST to oracle.emprod.agent_ext.ows_agentext,9.2.0.1.0,oracle.apache.xdk,9.2.0.1.0,oracle.emprod.agent_ext.oecm_agentext,9.2.0.1.0,oracle.bc4j,9.0.2.692.1,oracle.webdb.modplsql,3.0.9.8.3b,oracle.webdb.modplsql,3.0.9.8.3b,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.emprod.agent_ext.ows_agentext,9.2.0.1.0,oracle.apache.xdk,9.2.0.1.0,oracle.emprod.agent_ext.oecm_agentext,9.2.0.1.0,oracle.bc4j,9.0.2.692.1,oracle.webdb.modplsql,3.0.9.8.3b,oracle.webdb.modplsql,3.0.9.8.3b,
    Setting value of DEPENDENCY_LIST to oracle.emprod.agent_ext.ows_agentext,9.2.0.1.0,oracle.apache.xdk,9.2.0.1.0,oracle.emprod.agent_ext.oecm_agentext,9.2.0.1.0,oracle.bc4j,9.0.2.692.1,oracle.webdb.modplsql,3.0.9.8.3b,oracle.webdb.modplsql,3.0.9.8.3b,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.emprod.agent_ext.ows_agentext,9.2.0.1.0,oracle.apache.xdk,9.2.0.1.0,oracle.emprod.agent_ext.oecm_agentext,9.2.0.1.0,oracle.bc4j,9.0.2.692.1,oracle.webdb.modplsql,3.0.9.8.3b,oracle.webdb.modplsql,3.0.9.8.3b,
    Setting value of DEPENDENCY_LIST to oracle.emprod.agent_ext.ows_agentext,9.2.0.1.0,oracle.apache.xdk,9.2.0.1.0,oracle.emprod.agent_ext.oecm_agentext,9.2.0.1.0,oracle.bc4j,9.0.2.692.1,oracle.webdb.modplsql,3.0.9.8.3b,oracle.webdb.modplsql,3.0.9.8.3b,
    Setting value of DEPENDENCY_LIST to oracle.emprod.agent_ext.ows_agentext,9.2.0.1.0,oracle.apache.xdk,9.2.0.1.0,oracle.emprod.agent_ext.oecm_agentext,9.2.0.1.0,oracle.bc4j,9.0.2.692.1,oracle.webdb.modplsql,3.0.9.8.3b,oracle.webdb.modplsql,3.0.9.8.3b,
    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 : Linux
    Calling query generalQueries2.2.0.7.0  isCurrentPlatformInGroup
    platGroup = WINDOWS
    Query returned : false
    Calling query areasQueries2.2.0.7.0  productInstalled
    location = /oracle/QTY/920_32
    name = oracle.install.instcommon
    startVersion = 8.1.3.0.0
    endVersion = 8.1.4.0.0
    acceptCompatible = null
    Query returned : false
    Calling query rgsQueries2.2.0.7.0  isProductInstalled
    Location = /oracle/QTY/920_32
    InternalName = ocommon
    MaxVersion = 8.0.7
    MinVersion = 7.3.2
    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
    Calling query SIDQueries1.2.4  getAllOracleHomes
    Query returned : null
    Using the default value for query
    Calling query generalQueries2.2.0.7.0  isCurrentPlatformInGroup
    platGroup = UNIX
    Query returned : true
    Calling query RunningProcessQuery1.4.4  runningProcessExists
    fileNames =
    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
    Calling query rgsQueries2.2.0.7.0  isProductInstalled

    Would you mind
    1) do not duplicate questions:
    Re: oracle installation not proceeding further still 0%
    2) As mentioned on the other thread, Fedora Core 6 is NOT supported by SAP. It is not even supported by Oracle. Please, use a <b>supported </b> OS/DB combination to install ECC 5.0

  • Oracle Security Patch Error while applying --The filename, directory name,

    Hello,
    I am running into strange error while applying Oracle Security Patch 68 by using Opatch.
    Supposedly, All the environment variables are set properly.
    ACTIVE_STATE_PERL=true
    DBMS_TYPE=ORA
    dbs_ora_tnsname=YBQ
    JAVA_HOME=C:\jdk1.3.1_10
    OPATCH_DEBUG=TRUE
    ORACLE_HOME=E:\oracle\ora92
    ORACLE_SID=YBQ
    Path=E:\oracle\OPatch;C:\jdk1.3.1_10\bin;E:\oracle\Perl\bin;E:\oracle\ora92\jre\1.4.2\bin\client;E:\oracle\ora92\jre\1.4.2\bin;E:\oracle\ora92\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\Program Files\Common Files\VERITAS Shared;\NetBackup\bin;C:\Program Files\Windows Resource Kits\Tools\;C:\Program Files\Support Tools\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;E:\usr\sap\YBQ\SYS\exe\run
    Installed Active Perl. latest version
    downloaded Opatch 1.0.0.50
    and the patch number 3738339
    I went to that directory and run the command :
    perl opatch.pl apply
    It started of well.
    OPatch version is: 1.0.0.0.50
    Using ORACLE_HOME/oui to look up oui libs...
    Oracle Home = E:\oracle\ora92
    Location of Oracle Inventory = E:\oracle\ora92\inventory
    Oracle Universal Installer shared library = E:\oracle\ora92\oui\lib\win32\oraInstaller.dll
    Path to Java = "E:\oracle\ora92\jre\1.4.2\bin\java.exe"
    Location of Oracle Inventory Pointer = N/A
    Location of Oracle Universal Installer components = E:\oracle\ora92\oui
    Required Jar File under Oracle Universal Installer = jlib\OraInstaller.jar
    find under OH/oui/jlib
    found OraInstaller.jar
    Checking if this is a RAC system...
    Accessing inventory... This may take up to 300 seconds.
    (retry 10 times, delay 30 seconds each time)
    System Command: ""E:\oracle\ora92\jre\1.4.2\bin\java.exe" -Dopatch.retry=10 -Dopatch.delay=30 -DTRACING.ENABLED=TRUE -DTRACING.LEVEL=2 -Dopatch.debug=true -classpath "E:\oracle\ora92\oui\jlib\OraInstaller.jar;E:\oracle\ora92\oui\jlib\srvm.jar;jlib\opatch.jar;E:\oracle\ora92\oui\jlib\xmlparserv2.jar;E:\oracle\ora92\oui\jlib\share.jar;.:E:\oracle\ora92\jlib\srvm.jar" opatch/O2O "e:\oracle\ora92" "E:\oracle\ora92\oui" opatch.pl 1.0.0.0.50"
    Result:
    ----- DEBUG is ON -------
    oracle.installer.startup_location will be set to E:\oracle\ora92\oui
    oracle.installer.oui_loc will be set to E:\oracle\ora92\oui
    oracle.installer.scratchPath will be set to /tmp
    opatch.local_node_only is OFF
    retryOption is ON: 10
    delayOption is ON: 30
    Few more stuff here .. not pasting the entire contents
    System Command: ""E:\oracle\ora92\jre\1.4.2\bin\java.exe" -Dopatch.retry=10 -Dopatch.delay=30 -DTRACING.ENABLED=TRUE -DTRACING.LEVEL=2 -Dopatch.debug=true -classpath "E:\oracle\ora92\oui\jlib\OraInstaller.jar;E:\oracle\ora92\oui\jlib\srvm.jar;jlib\opatch.jar;E:\oracle\ora92\oui\jlib\xmlparserv2.jar;E:\oracle\ora92\oui\jlib\share.jar;." opatch/CheckConflict "E:\oracle\ora92\oui" "e:\oracle\ora92" opatch.pl 1.0.0.0.50 3738339 "3741539 3528282 3516951 3622875 3668572 3371796 3239873 3356103 3543125 3666502 2800494 2824035 2964252 3617042 3320622 3571233 3253770 3492040 3566469 3354470 3625370 3583686 3150750 3617519 3635177 3597640 3749394 3542588 3698501 2954891 2918138 3559212 3518909 3412818 3430832 3172282 3358490 3637624 3458446 3179637 2810394 3668224 3609791 3566813 3475932 2338704 3412136 3388633 3540576 3571226 3575743 2690205 3240280 3509265 3177513 3575747 3811906 3554319 3752406 3323435 " E:\3738339\etc\config\actions"
    Result:
    opatch.pl version: 1.0.0.0.50
    Copyright (c) 2001-2004 Oracle Corporation. All Rights Reserved.
    The filename, directory name, or volume label syntax is incorrect.
    Error in executing Java program to check conflict
    ERROR: OPatch failed during pre-reqs check.
    Now there is no problem with executing the last java program in the same prompt by removing the first and the last double quote "
    Please advise.
    Thanks in advance.

    hi somnath,
    this is the portal content management forum. for your database question please use the database forums:
    http://forums.oracle.com/forums/index.jsp?cat=18
    thanks,
    christian

  • Oracle 9i install hangs in Linux SMP Redhat 7.1

    Motherboard: Asus A7M266-D
    CPU: Two AMD Duron 1.2GHz
    Memory: 512MB PC2100
    Vedio: Gforce 4 MX440
    hard disk: MAXTOR 6L080L4
    O/S: Redhat 7.1
    Kernel: 2.4.2-2up and 2.4.2-2smp
    I install Oracle 9i on my dual AMD Duron machine. It hangs. If
    I am using smp kernel, it stop at the Installation Types Screen
    with Status Bar showing 47% complete and 'Setting up install types'.
    If I use single single cpu kernel, it stop at the File Locations
    screen and the status bar is 95% complete. The installActions.log
    does not show any error.
    It is the installActions.log when running under smp mode ( I took
    out a lot of setting value of PROD_HOME lines):
    installActions2002-04-19_10-25-26-AM.log
    Environment variables:
         ORACLE_HOME = /u01/app/oracle/product/9.0.1
         PATH = /bin:/usr/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/home/oracle/bin:/u01/app/oracle/product/9.0.1/bin
         CLASSPATH = /tmp/OraInstall:/tmp/OraInstall/oui/lib/OraInstaller.jar:/tmp/OraInstall/oui/lib/InstImages.jar:/tmp/OraInstall/oui/lib/InstHelp.jar:/tmp/OraInstall/oui/lib/oracleice.jar:/tmp/OraInstall/oui/lib/help.jar:/tmp/OraInstall/oui/lib/ewt.jar:/tmp/OraInstall/oui/lib/xmlparser.jar:/tmp/OraInstall/oui/lib/swingaccess.jar:.:/tmp/OraInstall/jre/bin/../classes:/tmp/OraInstall/jre/bin/../lib/classes.jar:/tmp/OraInstall/jre/bin/../lib/rt.jar:/tmp/OraInstall/jre/bin/../lib/i18n.jar:/tmp/OraInstall/jre/bin/../lib/classes.zip
    java.class.path=/tmp/OraInstall:/tmp/OraInstall/oui/lib/OraInstaller.jar:/tmp/OraInstall/oui/lib/InstImages.jar:/tmp/OraInstall/oui/lib/InstHelp.jar:/tmp/OraInstall/oui/lib/oracleice.jar:/tmp/OraInstall/oui/lib/help.jar:/tmp/OraInstall/oui/lib/ewt.jar:/tmp/OraInstall/oui/lib/xmlparser.jar:/tmp/OraInstall/oui/lib/swingaccess.jar:.:/tmp/OraInstall/jre/bin/../classes:/tmp/OraInstall/jre/bin/../lib/classes.jar:/tmp/OraInstall/jre/bin/../lib/rt.jar:/tmp/OraInstall/jre/bin/../lib/i18n.jar:/tmp/OraInstall/jre/bin/../lib/classes.zip
    Username is: oracle
    *** Welcome Page***Warning :*** Alert: Oracle Universal Installer
    Version 2.0.1.4.0
    Copyright ) 1999, 2001 Oracle Corporation. All Rights Reserved. ***User selected: Yes/OK
    Setting value of FROM_LOCATION to /mnt/cdrom/stage/products.jarSetting value of ORACLE_HOME_NAME to Setting value of SHOW_COMPONENT_LOCATIONS_PAGE to trueSetting value of SHOW_CUSTOM_TREE_PAGE to trueSetting value of SHOW_SUMMARY_PAGE to trueSetting value of SHOW_INSTALL_PROGRESS_PAGE to trueSetting value of SHOW_REQUIRED_CONFIG_TOOL_PAGE to trueSetting value of SHOW_OPTIONAL_CONFIG_TOOL_PAGE to trueSetting value of SHOW_RELEASE_NOTES to trueSetting value of SHOW_END_SESSION_PAGE to trueSetting value of SHOW_SPLASH_SCREEN to trueSetting value of SHOW_WELCOME_PAGE to trueSetting value of SHOW_ROOTSH_CONFIRMATION to trueSetting value of SHOW_EXIT_CONFIRMATION to trueSetting value of NEXT_SESSION to trueSetting value of NEXT_SESSION_ON_FAIL to trueSetting value of INVENTORY_LOCATION to /u01/app/oracle/oraInventorySetting value of INVENTORY_LOCATION to /u01/app/oracle/Setting value of UNIX_GROUP_NAME to dba
    *** UNIX Group Name Page***UnixInstallGroup = UNIX_GROUP_NAME = dbaInitializing inventory setup WCCEUnable to read /u01/app/oracle/Contents/OracleHomesList.ser. Some inventory information may be lost.Unable to read /u01/app/oracle/Contents/LibsList.ser. Some inventory information may be lost.
    The installer version is 2.0.1.4.0
    Doing operation in inventory setup WCCE
    Setting value of FROM_LOCATION to /mnt/cdrom/stage/products.jar
    Setting value of ORACLE_HOME to /u01/app/oracle/product/9.0.1
    Setting value of ORACLE_HOME_NAME to
    *** File Locations Page***
    FromLocation = FROM_LOCATION = /mnt/cdrom/stage/products.jar
    ToLocation = ORACLE_HOME = /u01/app/oracle/product/9.0.1
    ToName = ORACLE_HOME_NAME =
    Initializing installer access setup
    Setting value of ORACLE_HOME to /u01/app/oracle/product/9.0.1
    Setting value of ToplevelComp to oracle.server, 9.0.1.0.0, >0.0.0.0.0, [ 46 ][OH:2]
    Setting value of SELECTED_LANGUAGES to [en]
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/oracle_apache_ejb
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Apache
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Apache
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Apache
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Jsdk
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Jsdk
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Jserv
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Jserv
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/perl
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/perl
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/mod_plsql
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/mod_plsql
    Calling query areasQueries2.0.1.4.0 getInventoryLocation
    Query returned : /u01/app/oracle/
    Setting value of PROD_HOME to /u01/app/oracle/\..\jre\1.1.8
    Setting value of PROD_HOME to /u01/app/jre/1.1.8
    Calling query generalQueries2.0.1.4.0 isCurrentPlatformInGroup
    platGroup = WINDOWS
    Query returned : false
    Calling query areasQueries2.0.1.4.0 getInventoryLocation
    Query returned : /u01/app/oracle/
    Setting value of PROD_HOME to /u01/app/oracle/../oui
    Setting value of PROD_HOME to /u01/app/oui
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/oracle.options.ops.clustermgr
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/askJDKHome
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/oracle.p2k.proc
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/oracle.p2k.proc
    Doing operation for installer access setup
    Setting value of SELECTED_LANGUAGES to [en]
    Setting value of ToplevelComp to oracle.server, 9.0.1.0.0, >0.0.0.0.0, [ 46 ][OH:2]
    *** Available Products Page***
    TopLevelComp = ToplevelComp = oracle.server, 9.0.1.0.0, >0.0.0.0.0, [ 46 ][OH:2]
    Setting value of ToplevelComp to oracle.server, 9.0.1.0.0, >0.0.0.0.0, [ 46 ][OH:2]
    Unable to read /u01/app/oracle/Contents/CompsList0.ser. Some inventory information may be lost.
    Unable to read /u01/app/oracle/Contents/PatchesList0.ser. Some inventory information may be lost.
    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.0.1.0.0 " is "Enterprise Edition"
    # Not all the dependencies for the component Oracle9i Database 9.0.1.0.0 are found. Missing Component oracle.tg 9.0.1.0.0.
    Install type for "Enterprise Edition Options 9.0.1.0.0 " is "Typical"
    # Not all the dependencies for the component Enterprise Edition Options 9.0.1.0.0 are found. Missing Component oracle.olap.aps 9.0.1.0.0.
    Install type for "Oracle Spatial 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Products 9.0.1.0.0 " is "Enterprise Edition"
    Install type for "Oracle Net Services 9.0.1.0.0 " is "Server.Typical"
    # Not all the dependencies for the component Oracle Net Services 9.0.1.0.0 are found. Missing Component oracle.networking.protocol_supp 9.0.1.0.0.
    Install type for "Oracle Partitioning 9.0.1.0.0 " is "Typical"
    Install type for "Oracle9i 9.0.1.0.0 " is "Typical"
    # Not all the dependencies for the component Oracle9i 9.0.1.0.0 are found. Missing Component oracle.rdbms.hs_olefs 9.0.1.0.0.
    # Not all the dependencies for the component Oracle9i 9.0.1.0.0 are found. Missing Component oracle.rdbms.hs_olesql 9.0.1.0.0.
    # Not all the dependencies for the component Oracle9i 9.0.1.0.0 are found. Missing Component oracle.rdbms.hybrid 9.0.1.0.0.
    Install type for "Oracle Database Utilities 9.0.1.0.0 " is "Typical"
    Install type for "Database Verify Utility 9.0.1.0.0 " is "Typical"
    Install type for "Migration Utility 9.0.1.0.0 " is "Typical"
    Install type for "Oracle9i Development Kit 9.0.1.0.0 " is "Typical"
    # Not all the dependencies for the component Oracle9i Development Kit 9.0.1.0.0 are found. Missing Component oracle.p2k.procob18 1.8.76.0.0.
    # Not all the dependencies for the component Oracle9i Development Kit 9.0.1.0.0 are found. Missing Component oracle.p2k.procob 9.0.1.0.0.
    # Not all the dependencies for the component Oracle9i Development Kit 9.0.1.0.0 are found. Missing Component oracle.p2k.profor 1.8.76.0.0.
    Install type for "Oracle Trace 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Advanced Security 9.0.1.0.0 " is "Typical"
    # Not all the dependencies for the component Oracle Advanced Security 9.0.1.0.0 are found. Missing Component oracle.options.ano.dce 9.0.1.0.0.
    Install type for "Oracle JVM 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Ultra Search Server 1.0.3.0.0 " is "Typical"
    Install type for "Oracle Data Migration Assistant 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Database Configuration Assistant 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Agent Extensions 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Applications Extensions 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Web Site 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Ultra Search Middle-Tier 1.0.3.0.0 " is "Typical"
    Install type for "Oracle Management Server 9.0.1.0.0 " is "Complete"
    Install type for "Generic Connectivity Using ODBC 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Forms Extensions 9.0.1.0.0 " is "Typical"
    Install type for "Reporting Framework 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Enterprise Manager Webserver 9.0.1.0.0 " is "Complete"
    Install type for "Oracle HTTP Server 1.3.12.0.3a " is "Typical"
    Install type for "Oracle eBusiness Management Extensions 9.0.1.0.0 " is "Typical"
    Install type for "Oracle HTTP Server Extensions 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Intelligent Agent 9.0.1.0.0 " is "Typical"
    Install type for "Pro*C/C++ 9.0.1.0.0 " is "Typical"
    Install type for "Database SQL Scripts 9.0.1.0.0 " is "Typical"
    Install type for "Generic Connectivity Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Net Listener 9.0.1.0.0 " is "Typical"
    Install type for "Apache Configuration for Oracle Java Server Pages 1.1.2.3.0 " is "Typical"
    Install type for "Replication API 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Text 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Content Syndication Server 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Dynamic Services Server 9.0.1.0.0 " is "Typical"
    Install type for "BC4J Runtime 5.0.0.417.1 " is "Typical"
    Install type for "Oracle Internet Directory Client 3.0.1.0.0 " is "Typical"
    Install type for "Oracle Mod PL/SQL Gateway 3.0.9.0.7 " is "Typical"
    Install type for "PL/SQL Embedded Gateway 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Starter Database 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Complete OLTP Starter Database 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Complete DSS Starter Database 9.0.1.0.0 " is "Typical"
    Install type for "Apache Module for Oracle Servlet Engine 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Java Server Pages 1.1.2.3.0 " is "Typical"
    Install type for "Apache Configuration for EJB 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Diagnostics Pack 9.0.1.0.0 " is "Typical"
         Conflict while setting install type of "Oracle Enterprise Manager Client 9.0.1.0.0 " to "Maximum (Complete)". Install type already set to "Maximum (Complete)". Seting it to "Custom (Custom)"
    Install type for "Oracle Ultra Search Common Files 1.0.3.0.0 " is "Typical"
    Install type for "XML 9.0.1.0.0 " is "Typical"
         Conflict while setting install type of "XML Parser for Java 9.0.1.0.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Apache Configuration for Oracle XML Developer's Kit 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia Client Option 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Tuning Pack 9.0.1.0.0 " is "Complete"
    Install type for "Oracle XML Developer's Kit 9.0.1.0.0 " is "Typical"
         Conflict while setting install type of "XML Parser for PL/SQL 9.0.1.0.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.0.1.0.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.0.1.0.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "XSQL Servlet 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Management Pack for Oracle Applications 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Change Management Pack 9.0.1.0.0 " is "Complete"
    Install type for "Oracle interMedia Video 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia Audio 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia Image 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia Locator 9.0.1.0.0 " is "Typical"
    Install type for "Data Management Services Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Client 9.0.1.0.0 " is "Custom"
         Conflict while setting install type of "Oracle Enterprise Manager Quick Tours 9.0.1.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle interMedia Annotator 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Integrated Applications 9.0.1.0.0 " is "Complete"
    Install type for "Database Workspace Manager 9.0.1.0.0 " is "Typical"
    Install type for "Change Management Common Files 9.0.1.0.0 " is "Complete"
         Conflict while setting install type of "Oracle Intelligent Agent Base Component Files 9.0.1.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "SQL*Loader 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Database Demos 9.0.1.0.0 " is "Typical"
    Install type for "Advanced Replication 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Net Integration 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Enterprise Manager Database Applications 9.0.1.0.0 " is "Custom"
    Install type for "Oracle Enterprise Manager Console 9.0.1.0.0 " is "Complete"
    Install type for "Authentication and Encryption 9.0.1.0.0 " is "Typical"
    # Not all the dependencies for the component Authentication and Encryption 9.0.1.0.0 are found. Missing Component oracle.options.ano.sns.hybrid 9.0.1.0.0.
    Install type for "Oracle Intelligent Agent Base Component Files 9.0.1.0.0 " is "Custom"
         Conflict while setting install type of "Required Support Files 9.0.1.0.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.0.1.0.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle XML SQL Utility 9.0.1.0.0 " is "Typical"
    Install type for "XML Parser for PL/SQL 9.0.1.0.0 " is "Custom"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.2 9.0.1.0.0 " is "Typical"
    Install type for "XML Class Generator for Java 9.0.1.0.0 " is "Custom"
    Install type for "XML Transviewer Beans 9.0.1.0.0 " is "Custom"
    Install type for "SQL*Plus Worksheet 9.0.1.0.0 " is "Complete"
         Conflict while setting install type of "SQL*Plus 9.0.1.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Enterprise Manager Common Files 9.0.1.0.0 " is "Complete"
         Conflict while setting install type of "Secure Socket Layer 9.0.1.0.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.0.1.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "JEWT 4.1.7.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Advanced Queueing (AQ) API 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Common Schema Demos 9.0.1.0.0 " is "Typical"
    Install type for "Secure Socket Layer 9.0.1.0.0 " is "Custom"
    Install type for "Export/Import 9.0.1.0.0 " is "Typical"
    Install type for "SQL*Plus 9.0.1.0.0 " is "Custom"
    Install type for "Installation Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle9i for UNIX Documentation 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia Client Library and Demo 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Wallet Manager 9.0.1.0.0 " is "Custom"
         Conflict while setting install type of "Assistant Common Files 9.0.1.0.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Net 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Java Tools 9.0.1.0.0 " is "Custom"
         Conflict while setting install type of "Oracle Enterprise Java Beans and CORBA Tools 9.0.1.0.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (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.0.0 " to "Custom (Custom)". Install type already set to "Maximum (Complete)". Seting it to "Custom (Custom)"
    Install type for "DBUI 2.1.2.0.0 " is "Typical"
    Install type for "XML Parser for C++ 9.0.1.0.0 " is "Typical"
    Install type for "Enterprise Login Assistant 9.0.1.0.0 " is "Custom"
         Conflict while setting install type of "Enterprise Manager Base Classes 9.0.1.0.0 " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Install type for "XML Parser for C 9.0.1.0.0 " is "Typical"
    Install type for "XML Class Generator for C++ 9.0.1.0.0 " is "Typical"
    Install type for "Oracle C++ Call Interface 9.0.1.0.0 " is "Typical"
    Install type for "Enterprise Manager Base Classes 9.0.1.0.0 " is "Custom"
    Install type for "Oracle Call Interface (OCI) 9.0.1.0.0 " is "Typical"
    Install type for "EM NLS files 9.0.1.0.0 " is "Custom"
    Install type for "Oracle Net Manager 9.0.1.0.0 " is "Typical"
    Install type for "Self Service Application 3.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Quick Tours 9.0.1.0.0 " is "Custom"
    Install type for "Enterprise Manager Quick Tour 9.0.1.0.0 " is "Custom"
    Install type for "Change Management Pack Quick Tour 9.0.1.0.0 " is "Custom"
    Install type for "Diagnostics Pack Quick Tour 9.0.1.0.0 " is "Custom"
    Install type for "Tuning Pack Quick Tour 9.0.1.0.0 " is "Custom"
    Install type for "Management Pack for Oracle Applications Quick Tour 9.0.1.0.0 " is "Custom"
    Install type for "Management Pack for SAP R/3 QuickTour 9.0.1.0.0 " is "Custom"
    Install type for "Standard Management Pack Quick Tour 9.0.1.0.0 " is "Custom"
    Install type for "Apache JServ 1.1.0.0.0f " is "Typical"
    Install type for "JSDK 2.0.0.0.0d " is "Typical"
    Install type for "Oracle Directory Manager 3.0.1.0.0 " is "Complete"
         Conflict while setting install type of "Oracle Internet Directory Client Common Files 3.0.1.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Recovery Manager 9.0.1.0.0 " is "Typical"
    Install type for "Object Type Translator 9.0.1.0.0 " is "Typical"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.1 9.0.1.0.0 " is "Typical"
    Install type for "CABO 1.0.7.0.0 " is "Complete"
         Conflict while setting install type of "Java 2 Platform Enterprise Edition 9.0.1.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Net Configuration Assistant 9.0.1.0.0 " is "Typical"
    Install type for "Assistant Common Files 9.0.1.0.0 " is "Custom"
         Conflict while setting install type of "Oracle help For Java 3.2.9.0.0 " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Kodiak 1.2.1.0.0 " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Install type for "Character Set Migration Utility 9.0.1.0.0 " is "Typical"
    Install type for "Apache Web Server files 1.3.12.0.0c " is "Typical"
    Install type for "Oracle Perl Interpreter 5.00503.0.0.0b " is "Typical"
    Install type for "askJDKHome 1.1.8.0.0 " is "Typical"
    Install type for "Oracle Enterprise Java Beans and CORBA Tools 9.0.1.0.0 " is "Custom"
    Install type for "website NLS files 9.0.1.0.0 " is "Complete"
    Install type for "Utilities Common Files 9.0.1.0.0 " is "Custom"
    Install type for "Visigenics ORB 3.4.0.0.0 " is "Custom"
    Install type for "Capacity Planner 9.0.1.0.0 " is "Complete"
    Install type for "Java 2 Platform Enterprise Edition 9.0.1.0.0 " is "Custom"
    Install type for "JLE 1.0.6.0.0 " is "Complete"
    Install type for "Oracle Enterprise Manager PagingOMS Common 9.0.1.0.0 " is "Complete"
    Install type for "PL/SQL 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Universal Installer 2.0.1.4.0 " is "Custom"
    Install type for "JDBC/OCI Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Base Events 9.0.1.0.0 " is "Complete"
    Install type for "SQLJ Runtime 9.0.1.0.0 " is "Typical"
    Install type for "Instance Management 9.0.1.0.0 " is "Complete"
    Install type for "Schema Management 9.0.1.0.0 " is "Custom"
    Install type for "Security Management 9.0.1.0.0 " is "Custom"
    Install type for "Storage Management 9.0.1.0.0 " is "Complete"
    Install type for "Required Support Files 9.0.1.0.0 " is "Custom"
         Conflict while setting install type of "Oracle9i Globalization Support 9.0.1.0.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.0.1.0.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    # Not all the dependencies for the component Required Support Files 9.0.1.0.0 are found. Missing Component oracle.rsf.hybrid 9.0.1.0.0.
    Install type for "Oracle JDBC Thin Driver for JDK 1.1 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Internet Directory Client Common Files 3.0.1.0.0 " is "Custom"
    Install type for "Oracle Trace Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Oracle Text Manager 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Policy Manager 9.0.1.0.0 Beta" is "Complete"
    Install type for "Oracle Developer Server Forms Manager 9.0.1.0.0 Beta" is "Typical"
    Install type for "Oracle Parallel Server Manager 9.0.1.0.0 " is "Complete"
    Install type for "RDBMS Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Enterprise Manager Installation Pre-requisite Checks 9.0.1.0.0 " is "Complete"
    Install type for "LDAP Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Reorg Wizard 9.0.1.0.0 " is "Complete"
    Install type for "Precompiler Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Events 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Diagnostic Pack Advanced Events 9.0.1.0.0 " is "Complete"
    Install type for "Advanced Host Events 9.0.1.0.0 " is "Complete"
    Install type for "Performance Manager 9.0.1.0.0 " is "Complete"
    Install type for "Diagnostics Common Files 9.0.1.0.0 " is "Complete"
    Install type for "SQLServer Monitoring Option 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Net Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Graphical Explain Plan 9.0.1.0.0 " is "Complete"
    Install type for "Graphical Layout Tool 9.0.1.0.0 " is "Complete"
    Install type for "Outline Management 9.0.1.0.0 " is "Complete"
    Install type for "Shared Class Files 9.0.1.0.0 " is "Complete"
    Install type for "Tablespace Map 9.0.1.0.0 " is "Complete"
    Install type for "Oracle9i Globalization Support 9.0.1.0.0 " is "Custom"
    Install type for "Concurrent Processing Tuning Assistant 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Service Level Reporting 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Core Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Precompiler Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Platform Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Oracle help For Java 3.2.9.0.0 " is "Custom"
         Conflict while setting install type of "Extended Windowing Toolkit 3.3.18.0.0 " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Install type for "Java Runtime Environment 1.1.8.0.0 " is "Custom"
    Install type for "PL/SQL Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Parser Generator Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Oracle JDBC Thin Driver for JDK 1.2 9.0.1.0.0 " is "Typical"
    Install type for "JDBC Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle JDBC Development Drivers 9.0.1.0.0 " is "Typical"
    Install type for "Kodiak 1.2.1.0.0 " is "Custom"
    Install type for "XML Parser for Java 9.0.1.0.0 " is "Custom"
    Install type for "JEWT 4.1.7.0.0 " is "Custom"
    Install type for "Extended Windowing Toolkit 3.3.18.0.0 " is "Custom"
    Install type for "SSL Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Agent Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Oracle Client Required Support Files 9.0.1.0.0 " is "Custom"
    Calling query areasQueries2.0.1.4.0 getComponentInstallTypeName
    Query returned : EE
    Calling query generalQueries2.0.1.4.0 getOSName
    Query returned : Linux
    Calling query generalQueries2.0.1.4.0 isCurrentPlatformInGroup
    platGroup = WINDOWS
    Query returned : false
    Calling query areasQueries2.0.1.4.0 productInstalled
    location = /u01/app/oracle/product/9.0.1
    name = oracle.install.instcommon
    startVersion = 8.1.3.0.0
    endVersion = 9.0.0.0.0
    acceptCompatible = null
    Query returned : false

    Yes, I've tried LD_ASSUME_KERNEL=2.4.1 and =2.2.5 to no avail. I have a later version of glibc.
    Other ideas?

  • Install Oracle 9i Hangs on Linux SMP Redhat 7.1

    I posted this message to the General forum but without any reply. So I repost it here.
    Motherboard: Asus A7M266-D
    CPU: Two AMD Duron 1.2GHz
    Memory: 512MB PC2100
    Vedio: Gforce 4 MX440
    hard disk: MAXTOR 6L080L4
    O/S: Redhat 7.1
    Kernel: 2.4.2-2up and 2.4.2-2smp
    I install Oracle 9i on my dual AMD Duron machine. It hangs. If
    I am using smp kernel, it stop at the Installation Types Screen
    with Status Bar showing 47% complete and 'Setting up install types'.
    If I use single single cpu kernel, it stop at the File Locations
    screen and the status bar is 95% complete. The installActions.log
    does not show any error.
    It is the installActions.log when running under smp mode ( I took
    out a lot of setting value of PROD_HOME lines):
    installActions2002-04-19_10-25-26-AM.log
    Environment variables:
    ORACLE_HOME = /u01/app/oracle/product/9.0.1
    PATH = /bin:/usr/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/home/oracle/bin:/u01/app/oracle/product/9.0.1/bin
    CLASSPATH = /tmp/OraInstall:/tmp/OraInstall/oui/lib/OraInstaller.jar:/tmp/OraInstall/oui/lib/InstImages.jar:/tmp/OraInstall/oui/lib/InstHelp.jar:/tmp/OraInstall/oui/lib/oracleice.jar:/tmp/OraInstall/oui/lib/help.jar:/tmp/OraInstall/oui/lib/ewt.jar:/tmp/OraInstall/oui/lib/xmlparser.jar:/tmp/OraInstall/oui/lib/swingaccess.jar:.:/tmp/OraInstall/jre/bin/../classes:/tmp/OraInstall/jre/bin/../lib/classes.jar:/tmp/OraInstall/jre/bin/../lib/rt.jar:/tmp/OraInstall/jre/bin/../lib/i18n.jar:/tmp/OraInstall/jre/bin/../lib/classes.zip
    java.class.path=/tmp/OraInstall:/tmp/OraInstall/oui/lib/OraInstaller.jar:/tmp/OraInstall/oui/lib/InstImages.jar:/tmp/OraInstall/oui/lib/InstHelp.jar:/tmp/OraInstall/oui/lib/oracleice.jar:/tmp/OraInstall/oui/lib/help.jar:/tmp/OraInstall/oui/lib/ewt.jar:/tmp/OraInstall/oui/lib/xmlparser.jar:/tmp/OraInstall/oui/lib/swingaccess.jar:.:/tmp/OraInstall/jre/bin/../classes:/tmp/OraInstall/jre/bin/../lib/classes.jar:/tmp/OraInstall/jre/bin/../lib/rt.jar:/tmp/OraInstall/jre/bin/../lib/i18n.jar:/tmp/OraInstall/jre/bin/../lib/classes.zip
    Username is: oracle
    *** Welcome Page***Warning :*** Alert: Oracle Universal Installer
    Version 2.0.1.4.0
    Copyright ) 1999, 2001 Oracle Corporation. All Rights Reserved. ***User selected: Yes/OK
    Setting value of FROM_LOCATION to /mnt/cdrom/stage/products.jarSetting value of ORACLE_HOME_NAME to Setting value of SHOW_COMPONENT_LOCATIONS_PAGE to trueSetting value of SHOW_CUSTOM_TREE_PAGE to trueSetting value of SHOW_SUMMARY_PAGE to trueSetting value of SHOW_INSTALL_PROGRESS_PAGE to trueSetting value of SHOW_REQUIRED_CONFIG_TOOL_PAGE to trueSetting value of SHOW_OPTIONAL_CONFIG_TOOL_PAGE to trueSetting value of SHOW_RELEASE_NOTES to trueSetting value of SHOW_END_SESSION_PAGE to trueSetting value of SHOW_SPLASH_SCREEN to trueSetting value of SHOW_WELCOME_PAGE to trueSetting value of SHOW_ROOTSH_CONFIRMATION to trueSetting value of SHOW_EXIT_CONFIRMATION to trueSetting value of NEXT_SESSION to trueSetting value of NEXT_SESSION_ON_FAIL to trueSetting value of INVENTORY_LOCATION to /u01/app/oracle/oraInventorySetting value of INVENTORY_LOCATION to /u01/app/oracle/Setting value of UNIX_GROUP_NAME to dba
    *** UNIX Group Name Page***UnixInstallGroup = UNIX_GROUP_NAME = dbaInitializing inventory setup WCCEUnable to read /u01/app/oracle/Contents/OracleHomesList.ser. Some inventory information may be lost.Unable to read /u01/app/oracle/Contents/LibsList.ser. Some inventory information may be lost.
    The installer version is 2.0.1.4.0
    Doing operation in inventory setup WCCE
    Setting value of FROM_LOCATION to /mnt/cdrom/stage/products.jar
    Setting value of ORACLE_HOME to /u01/app/oracle/product/9.0.1
    Setting value of ORACLE_HOME_NAME to
    *** File Locations Page***
    FromLocation = FROM_LOCATION = /mnt/cdrom/stage/products.jar
    ToLocation = ORACLE_HOME = /u01/app/oracle/product/9.0.1
    ToName = ORACLE_HOME_NAME =
    Initializing installer access setup
    Setting value of ORACLE_HOME to /u01/app/oracle/product/9.0.1
    Setting value of ToplevelComp to oracle.server, 9.0.1.0.0, >0.0.0.0.0, [ 46 ][OH:2]
    Setting value of SELECTED_LANGUAGES to [en]
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/oracle_apache_ejb
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Apache
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Apache
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Apache
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Jsdk
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Jsdk
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Jserv
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/Jserv
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/perl
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/Apache/perl
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/mod_plsql
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/mod_plsql
    Calling query areasQueries2.0.1.4.0 getInventoryLocation
    Query returned : /u01/app/oracle/
    Setting value of PROD_HOME to /u01/app/oracle/\..\jre\1.1.8
    Setting value of PROD_HOME to /u01/app/jre/1.1.8
    Calling query generalQueries2.0.1.4.0 isCurrentPlatformInGroup
    platGroup = WINDOWS
    Query returned : false
    Calling query areasQueries2.0.1.4.0 getInventoryLocation
    Query returned : /u01/app/oracle/
    Setting value of PROD_HOME to /u01/app/oracle/../oui
    Setting value of PROD_HOME to /u01/app/oui
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/oracle.options.ops.clustermgr
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/askJDKHome
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/oracle.p2k.proc
    Setting value of PROD_HOME to /u01/app/oracle/product/9.0.1/oracle.p2k.proc
    Doing operation for installer access setup
    Setting value of SELECTED_LANGUAGES to [en]
    Setting value of ToplevelComp to oracle.server, 9.0.1.0.0, >0.0.0.0.0, [ 46 ][OH:2]
    *** Available Products Page***
    TopLevelComp = ToplevelComp = oracle.server, 9.0.1.0.0, >0.0.0.0.0, [ 46 ][OH:2]
    Setting value of ToplevelComp to oracle.server, 9.0.1.0.0, >0.0.0.0.0, [ 46 ][OH:2]
    Unable to read /u01/app/oracle/Contents/CompsList0.ser. Some inventory information may be lost.
    Unable to read /u01/app/oracle/Contents/PatchesList0.ser. Some inventory information may be lost.
    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.0.1.0.0 " is "Enterprise Edition"
    # Not all the dependencies for the component Oracle9i Database 9.0.1.0.0 are found. Missing Component oracle.tg 9.0.1.0.0.
    Install type for "Enterprise Edition Options 9.0.1.0.0 " is "Typical"
    # Not all the dependencies for the component Enterprise Edition Options 9.0.1.0.0 are found. Missing Component oracle.olap.aps 9.0.1.0.0.
    Install type for "Oracle Spatial 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Products 9.0.1.0.0 " is "Enterprise Edition"
    Install type for "Oracle Net Services 9.0.1.0.0 " is "Server.Typical"
    # Not all the dependencies for the component Oracle Net Services 9.0.1.0.0 are found. Missing Component oracle.networking.protocol_supp 9.0.1.0.0.
    Install type for "Oracle Partitioning 9.0.1.0.0 " is "Typical"
    Install type for "Oracle9i 9.0.1.0.0 " is "Typical"
    # Not all the dependencies for the component Oracle9i 9.0.1.0.0 are found. Missing Component oracle.rdbms.hs_olefs 9.0.1.0.0.
    # Not all the dependencies for the component Oracle9i 9.0.1.0.0 are found. Missing Component oracle.rdbms.hs_olesql 9.0.1.0.0.
    # Not all the dependencies for the component Oracle9i 9.0.1.0.0 are found. Missing Component oracle.rdbms.hybrid 9.0.1.0.0.
    Install type for "Oracle Database Utilities 9.0.1.0.0 " is "Typical"
    Install type for "Database Verify Utility 9.0.1.0.0 " is "Typical"
    Install type for "Migration Utility 9.0.1.0.0 " is "Typical"
    Install type for "Oracle9i Development Kit 9.0.1.0.0 " is "Typical"
    # Not all the dependencies for the component Oracle9i Development Kit 9.0.1.0.0 are found. Missing Component oracle.p2k.procob18 1.8.76.0.0.
    # Not all the dependencies for the component Oracle9i Development Kit 9.0.1.0.0 are found. Missing Component oracle.p2k.procob 9.0.1.0.0.
    # Not all the dependencies for the component Oracle9i Development Kit 9.0.1.0.0 are found. Missing Component oracle.p2k.profor 1.8.76.0.0.
    Install type for "Oracle Trace 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Advanced Security 9.0.1.0.0 " is "Typical"
    # Not all the dependencies for the component Oracle Advanced Security 9.0.1.0.0 are found. Missing Component oracle.options.ano.dce 9.0.1.0.0.
    Install type for "Oracle JVM 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Ultra Search Server 1.0.3.0.0 " is "Typical"
    Install type for "Oracle Data Migration Assistant 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Database Configuration Assistant 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Agent Extensions 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Applications Extensions 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Web Site 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Ultra Search Middle-Tier 1.0.3.0.0 " is "Typical"
    Install type for "Oracle Management Server 9.0.1.0.0 " is "Complete"
    Install type for "Generic Connectivity Using ODBC 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Forms Extensions 9.0.1.0.0 " is "Typical"
    Install type for "Reporting Framework 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Enterprise Manager Webserver 9.0.1.0.0 " is "Complete"
    Install type for "Oracle HTTP Server 1.3.12.0.3a " is "Typical"
    Install type for "Oracle eBusiness Management Extensions 9.0.1.0.0 " is "Typical"
    Install type for "Oracle HTTP Server Extensions 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Intelligent Agent 9.0.1.0.0 " is "Typical"
    Install type for "Pro*C/C++ 9.0.1.0.0 " is "Typical"
    Install type for "Database SQL Scripts 9.0.1.0.0 " is "Typical"
    Install type for "Generic Connectivity Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Net Listener 9.0.1.0.0 " is "Typical"
    Install type for "Apache Configuration for Oracle Java Server Pages 1.1.2.3.0 " is "Typical"
    Install type for "Replication API 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Text 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Content Syndication Server 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Dynamic Services Server 9.0.1.0.0 " is "Typical"
    Install type for "BC4J Runtime 5.0.0.417.1 " is "Typical"
    Install type for "Oracle Internet Directory Client 3.0.1.0.0 " is "Typical"
    Install type for "Oracle Mod PL/SQL Gateway 3.0.9.0.7 " is "Typical"
    Install type for "PL/SQL Embedded Gateway 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Starter Database 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Complete OLTP Starter Database 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Complete DSS Starter Database 9.0.1.0.0 " is "Typical"
    Install type for "Apache Module for Oracle Servlet Engine 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Java Server Pages 1.1.2.3.0 " is "Typical"
    Install type for "Apache Configuration for EJB 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Diagnostics Pack 9.0.1.0.0 " is "Typical"
    Conflict while setting install type of "Oracle Enterprise Manager Client 9.0.1.0.0 " to "Maximum (Complete)". Install type already set to "Maximum (Complete)". Seting it to "Custom (Custom)"
    Install type for "Oracle Ultra Search Common Files 1.0.3.0.0 " is "Typical"
    Install type for "XML 9.0.1.0.0 " is "Typical"
    Conflict while setting install type of "XML Parser for Java 9.0.1.0.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Apache Configuration for Oracle XML Developer's Kit 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia Client Option 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Tuning Pack 9.0.1.0.0 " is "Complete"
    Install type for "Oracle XML Developer's Kit 9.0.1.0.0 " is "Typical"
    Conflict while setting install type of "XML Parser for PL/SQL 9.0.1.0.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.0.1.0.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.0.1.0.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "XSQL Servlet 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Management Pack for Oracle Applications 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Change Management Pack 9.0.1.0.0 " is "Complete"
    Install type for "Oracle interMedia Video 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia Audio 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia Image 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia Locator 9.0.1.0.0 " is "Typical"
    Install type for "Data Management Services Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Client 9.0.1.0.0 " is "Custom"
    Conflict while setting install type of "Oracle Enterprise Manager Quick Tours 9.0.1.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle interMedia Annotator 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Integrated Applications 9.0.1.0.0 " is "Complete"
    Install type for "Database Workspace Manager 9.0.1.0.0 " is "Typical"
    Install type for "Change Management Common Files 9.0.1.0.0 " is "Complete"
    Conflict while setting install type of "Oracle Intelligent Agent Base Component Files 9.0.1.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "SQL*Loader 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Database Demos 9.0.1.0.0 " is "Typical"
    Install type for "Advanced Replication 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Net Integration 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Enterprise Manager Database Applications 9.0.1.0.0 " is "Custom"
    Install type for "Oracle Enterprise Manager Console 9.0.1.0.0 " is "Complete"
    Install type for "Authentication and Encryption 9.0.1.0.0 " is "Typical"
    # Not all the dependencies for the component Authentication and Encryption 9.0.1.0.0 are found. Missing Component oracle.options.ano.sns.hybrid 9.0.1.0.0.
    Install type for "Oracle Intelligent Agent Base Component Files 9.0.1.0.0 " is "Custom"
    Conflict while setting install type of "Required Support Files 9.0.1.0.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.0.1.0.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle XML SQL Utility 9.0.1.0.0 " is "Typical"
    Install type for "XML Parser for PL/SQL 9.0.1.0.0 " is "Custom"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.2 9.0.1.0.0 " is "Typical"
    Install type for "XML Class Generator for Java 9.0.1.0.0 " is "Custom"
    Install type for "XML Transviewer Beans 9.0.1.0.0 " is "Custom"
    Install type for "SQL*Plus Worksheet 9.0.1.0.0 " is "Complete"
    Conflict while setting install type of "SQL*Plus 9.0.1.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Enterprise Manager Common Files 9.0.1.0.0 " is "Complete"
    Conflict while setting install type of "Secure Socket Layer 9.0.1.0.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.0.1.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Conflict while setting install type of "JEWT 4.1.7.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Advanced Queueing (AQ) API 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Common Schema Demos 9.0.1.0.0 " is "Typical"
    Install type for "Secure Socket Layer 9.0.1.0.0 " is "Custom"
    Install type for "Export/Import 9.0.1.0.0 " is "Typical"
    Install type for "SQL*Plus 9.0.1.0.0 " is "Custom"
    Install type for "Installation Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle9i for UNIX Documentation 9.0.1.0.0 " is "Typical"
    Install type for "Oracle interMedia Client Library and Demo 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Wallet Manager 9.0.1.0.0 " is "Custom"
    Conflict while setting install type of "Assistant Common Files 9.0.1.0.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Net 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Java Tools 9.0.1.0.0 " is "Custom"
    Conflict while setting install type of "Oracle Enterprise Java Beans and CORBA Tools 9.0.1.0.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (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.0.0 " to "Custom (Custom)". Install type already set to "Maximum (Complete)". Seting it to "Custom (Custom)"
    Install type for "DBUI 2.1.2.0.0 " is "Typical"
    Install type for "XML Parser for C++ 9.0.1.0.0 " is "Typical"
    Install type for "Enterprise Login Assistant 9.0.1.0.0 " is "Custom"
    Conflict while setting install type of "Enterprise Manager Base Classes 9.0.1.0.0 " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Install type for "XML Parser for C 9.0.1.0.0 " is "Typical"
    Install type for "XML Class Generator for C++ 9.0.1.0.0 " is "Typical"
    Install type for "Oracle C++ Call Interface 9.0.1.0.0 " is "Typical"
    Install type for "Enterprise Manager Base Classes 9.0.1.0.0 " is "Custom"
    Install type for "Oracle Call Interface (OCI) 9.0.1.0.0 " is "Typical"
    Install type for "EM NLS files 9.0.1.0.0 " is "Custom"
    Install type for "Oracle Net Manager 9.0.1.0.0 " is "Typical"
    Install type for "Self Service Application 3.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Quick Tours 9.0.1.0.0 " is "Custom"
    Install type for "Enterprise Manager Quick Tour 9.0.1.0.0 " is "Custom"
    Install type for "Change Management Pack Quick Tour 9.0.1.0.0 " is "Custom"
    Install type for "Diagnostics Pack Quick Tour 9.0.1.0.0 " is "Custom"
    Install type for "Tuning Pack Quick Tour 9.0.1.0.0 " is "Custom"
    Install type for "Management Pack for Oracle Applications Quick Tour 9.0.1.0.0 " is "Custom"
    Install type for "Management Pack for SAP R/3 QuickTour 9.0.1.0.0 " is "Custom"
    Install type for "Standard Management Pack Quick Tour 9.0.1.0.0 " is "Custom"
    Install type for "Apache JServ 1.1.0.0.0f " is "Typical"
    Install type for "JSDK 2.0.0.0.0d " is "Typical"
    Install type for "Oracle Directory Manager 3.0.1.0.0 " is "Complete"
    Conflict while setting install type of "Oracle Internet Directory Client Common Files 3.0.1.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Recovery Manager 9.0.1.0.0 " is "Typical"
    Install type for "Object Type Translator 9.0.1.0.0 " is "Typical"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.1 9.0.1.0.0 " is "Typical"
    Install type for "CABO 1.0.7.0.0 " is "Complete"
    Conflict while setting install type of "Java 2 Platform Enterprise Edition 9.0.1.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Net Configuration Assistant 9.0.1.0.0 " is "Typical"
    Install type for "Assistant Common Files 9.0.1.0.0 " is "Custom"
    Conflict while setting install type of "Oracle help For Java 3.2.9.0.0 " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Conflict while setting install type of "Kodiak 1.2.1.0.0 " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Install type for "Character Set Migration Utility 9.0.1.0.0 " is "Typical"
    Install type for "Apache Web Server files 1.3.12.0.0c " is "Typical"
    Install type for "Oracle Perl Interpreter 5.00503.0.0.0b " is "Typical"
    Install type for "askJDKHome 1.1.8.0.0 " is "Typical"
    Install type for "Oracle Enterprise Java Beans and CORBA Tools 9.0.1.0.0 " is "Custom"
    Install type for "website NLS files 9.0.1.0.0 " is "Complete"
    Install type for "Utilities Common Files 9.0.1.0.0 " is "Custom"
    Install type for "Visigenics ORB 3.4.0.0.0 " is "Custom"
    Install type for "Capacity Planner 9.0.1.0.0 " is "Complete"
    Install type for "Java 2 Platform Enterprise Edition 9.0.1.0.0 " is "Custom"
    Install type for "JLE 1.0.6.0.0 " is "Complete"
    Install type for "Oracle Enterprise Manager PagingOMS Common 9.0.1.0.0 " is "Complete"
    Install type for "PL/SQL 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Universal Installer 2.0.1.4.0 " is "Custom"
    Install type for "JDBC/OCI Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Base Events 9.0.1.0.0 " is "Complete"
    Install type for "SQLJ Runtime 9.0.1.0.0 " is "Typical"
    Install type for "Instance Management 9.0.1.0.0 " is "Complete"
    Install type for "Schema Management 9.0.1.0.0 " is "Custom"
    Install type for "Security Management 9.0.1.0.0 " is "Custom"
    Install type for "Storage Management 9.0.1.0.0 " is "Complete"
    Install type for "Required Support Files 9.0.1.0.0 " is "Custom"
    Conflict while setting install type of "Oracle9i Globalization Support 9.0.1.0.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.0.1.0.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    # Not all the dependencies for the component Required Support Files 9.0.1.0.0 are found. Missing Component oracle.rsf.hybrid 9.0.1.0.0.
    Install type for "Oracle JDBC Thin Driver for JDK 1.1 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Internet Directory Client Common Files 3.0.1.0.0 " is "Custom"
    Install type for "Oracle Trace Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Oracle Text Manager 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Policy Manager 9.0.1.0.0 Beta" is "Complete"
    Install type for "Oracle Developer Server Forms Manager 9.0.1.0.0 Beta" is "Typical"
    Install type for "Oracle Parallel Server Manager 9.0.1.0.0 " is "Complete"
    Install type for "RDBMS Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Enterprise Manager Installation Pre-requisite Checks 9.0.1.0.0 " is "Complete"
    Install type for "LDAP Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Reorg Wizard 9.0.1.0.0 " is "Complete"
    Install type for "Precompiler Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Events 9.0.1.0.0 " is "Typical"
    Install type for "Oracle Diagnostic Pack Advanced Events 9.0.1.0.0 " is "Complete"
    Install type for "Advanced Host Events 9.0.1.0.0 " is "Complete"
    Install type for "Performance Manager 9.0.1.0.0 " is "Complete"
    Install type for "Diagnostics Common Files 9.0.1.0.0 " is "Complete"
    Install type for "SQLServer Monitoring Option 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Net Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Graphical Explain Plan 9.0.1.0.0 " is "Complete"
    Install type for "Graphical Layout Tool 9.0.1.0.0 " is "Complete"
    Install type for "Outline Management 9.0.1.0.0 " is "Complete"
    Install type for "Shared Class Files 9.0.1.0.0 " is "Complete"
    Install type for "Tablespace Map 9.0.1.0.0 " is "Complete"
    Install type for "Oracle9i Globalization Support 9.0.1.0.0 " is "Custom"
    Install type for "Concurrent Processing Tuning Assistant 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Service Level Reporting 9.0.1.0.0 " is "Complete"
    Install type for "Oracle Core Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Precompiler Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Platform Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Oracle help For Java 3.2.9.0.0 " is "Custom"
    Conflict while setting install type of "Extended Windowing Toolkit 3.3.18.0.0 " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Install type for "Java Runtime Environment 1.1.8.0.0 " is "Custom"
    Install type for "PL/SQL Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Parser Generator Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Oracle JDBC Thin Driver for JDK 1.2 9.0.1.0.0 " is "Typical"
    Install type for "JDBC Common Files 9.0.1.0.0 " is "Typical"
    Install type for "Oracle JDBC Development Drivers 9.0.1.0.0 " is "Typical"
    Install type for "Kodiak 1.2.1.0.0 " is "Custom"
    Install type for "XML Parser for Java 9.0.1.0.0 " is "Custom"
    Install type for "JEWT 4.1.7.0.0 " is "Custom"
    Install type for "Extended Windowing Toolkit 3.3.18.0.0 " is "Custom"
    Install type for "SSL Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Agent Required Support Files 9.0.1.0.0 " is "Custom"
    Install type for "Oracle Client Required Support Files 9.0.1.0.0 " is "Custom"
    Calling query areasQueries2.0.1.4.0 getComponentInstallTypeName
    Query returned : EE
    Calling query generalQueries2.0.1.4.0 getOSName
    Query returned : Linux
    Calling query generalQueries2.0.1.4.0 isCurrentPlatformInGroup
    platGroup = WINDOWS
    Query returned : false
    Calling query areasQueries2.0.1.4.0 productInstalled
    location = /u01/app/oracle/product/9.0.1
    name = oracle.install.instcommon
    startVersion = 8.1.3.0.0
    endVersion = 9.0.0.0.0
    acceptCompatible = null
    Query returned : false

    Mey be this link can help you!
    http://otn.oracle.com/docs/products/oracle9i/content.html
    With this document i have made my first installation of oracle9i
    on Linux Mandrake8.2
    Good Luky

  • Perl.exe taking up all system ram

    Normal server installed, even before data was loaded into the database the perl.exe process is going crazy and constantly using more and more RAM.
    Currently it is hovering around 14GB of the 16GB of ram the system has.
    Only thing abnormal with this install is that there isn't a C drive in windows. I heard that oracle hard programmed some perl scripts to look for a C:, but nothing about how to fix it.
    Anyone else ever fix something like this or have it happen? I can end this process and it will come back eventually.

    There isn't an error message, just a rogue oracle perl process that uses all the available ram and cpu resources that eventually slows the system.
    Version:
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE     11.2.0.1.0     Production
    TNS for 64-bit Windows: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    Others have said to make a physical C:, but that isn't the problem since oracle doesn't specify/require that a C drive must exist:
    perl.exe consuming memory and cpu
    Some others said it was from a perl script and they fixed the scripts themselves, but provided no details on a specific script:
    multiple perl.exe using lots of memory?
    I can't turn off dbconsole that some say runs this process:
    D:\Users\useradmin>emctl stop dbconsole
    Can't locate CompEMdbconsole.pm in @INC (@INC contains: %s_javapOracleHome%/sysm
    an/admin/scripts %s_javapOracleHome%/bin R:\app\product\11.2.0\client_1\\perl\bi
    n R:\app\product\11.2.0\client_1\perl\lib R:\app\product\11.2.0\client_1\perl\li
    b\site_perl R:\app\product\11.2.0\client_1\perl\site\lib R:\app\product\11.2.0\c
    lient_1\sysman\admin\scripts R:\app\product\11.2.0\client_1\sysman\admin\scripts
    \Net-DNS-0.48\lib R:\app\product\11.2.0\client_1\bin R:/app/product/11.2.0/clien
    t_1/perl/lib R:/app/product/11.2.0/client_1/perl/site/lib .) at R:\app\product\1
    1.2.0\client_1\bin/EmctlCommon.pm line 598.
    All in all this install was the same as many others I've done, but this one doesn't have a C:

  • Oracle 9i installation hanging in "Clone Database Creation in Process"

    Hi all,
    I have been struggling in installing the 9i in my laptop.
    Here is my setup,
    OS: Windows Server 2003 Enterprise Edition SP2 in VMWare
    Database: Oracle 9i 9.2.0.1.0
    When it automatically comes to "Database Configuration Assistant", there are 4 steps.
    Copying Database files
    Initializing Database
    Creating and starting Oracle Instance
    Completing database creation
    The 1st 3 steps has been completed and the installation just hangs at the last step when the completion rate is 88%.
    Anyone got problem like this ?
    Here are the details I have so far for the DBCA during installation process,
    Listener Control complete.
    Listener start failed. Listener may already be running.
    Listener configuration complete.
    Default local naming configuration complete.
    Oracle Net Services configuration successful. The exit code is 0
    Since I am completely new to installing DB, please help me to get rid of this frustration.
    Thanks !
    Regards,
    Chris

    Capacity Planner 9.2.0.1.0
              Enterprise Manager Events 9.2.0.1.0
              Enterprise Manager Base Classes 9.2.0.1.0
              Required Support Files 9.2.0.1.0
              Enterprise Manager Installation Prerequisite Checks 9.2.0.1.0
              Utilities Common Files 9.2.0.1.0
              Enterprise Manager Quick Tours 9.2.0.1.0
              Oracle Display Fonts 9.0.2.0.0
              regexp 2.0.20.0.0
              Oracle OLAP Worksheet 9.2.0.1.0
              Oracle OLAP API 9.2.0.1.0
              Oracle Developer Server Forms Manager 9.2.0.1.0
              Oracle Intelligent Agent Base Component Files 9.2.0.1.0
              Oracle Internet Directory Client Common Files 9.2.0.1.0
              Sun JDK 1.3.1.0.1a
              Oracle Directory Manager 9.2.0.1.0
              Visigenics ORB 3.4.0.0.0
              Assistant Common Files 9.2.0.1.0
              Enterprise Manager Paging and OMS Common Files 9.2.0.1.0
              XML Parser for C 9.2.0.1.0
              Oracle Net Configuration Assistant 9.2.0.1.0
              Character Set Migration Utility 9.2.0.1.0
              Enterprise Manage Website Translated Files 9.2.0.1.0
              Oracle Net Manager 9.2.0.1.0
              Oracle Net 9.2.0.1.0
              Oracle Perl Interpreter 5.00503.0.0.0c
              Apache Web Server files 1.3.22.0.0a
              Oracle JDBC/OCI Driver for JDK 1.4 9.2.0.1.0
              Database Configuration Assistant 9.2.0.1.0
              Oracle JDBC/OCI Driver for JDK 1.2 9.2.0.1.0
              Oracle INTYPE File Assistant 9.2.0.1.0
              SQLJ Runtime 9.2.0.1.0
              Oracle JDBC/OCI Interfaces 9.2.0.1.0
              Advanced Queueing (AQ) API 9.2.0.1.0
              Oracle Caching Service for Java 2.1.0.0.0a
              Recovery Manager 9.2.0.1.0
              JSDK 2.0.0.0.0d
              Apache JServ 1.1.0.0.0g
              Oracle interMedia Java Client 9.2.0.1.0
              Oracle Java Layout Engine 2.0.1.0.0
              Oracle Administration Assistant for Windows NT 9.2.0.1.0
              Oracle XML SQL Utility 9.2.0.1.0
              SQLJ Translator 9.2.0.1.0
              Enterprise Login Assistant 9.2.0.1.0
              Oracle Services For Microsoft Transaction Server 9.2.0.1.0
              Enterprise Manager Paging Server 9.2.0.1.0
              Oracle Java Tools 9.2.0.1.0
              Oracle ODBC Driver 9.2.0.1.0
              Authentication and Encryption 9.2.0.1.0
              Oracle Wallet Manager 9.2.0.1.0
              Oracle Database User Interface 2.2.11.0.0
              Oracle SNMP Agent 9.2.0.1.0
              Oracle Provider for OLE DB 9.2.0.1.0
              Oracle Objects for OLE 9.2.0.4.4
              Oracle C++ Call Interface 9.2.0.1.0
              Oracle OLAP Cube Viewer 9.2.0.1.0
              Oracle OLAP CWM Lite 9.2.0.1.0
              Object Type Translator 9.2.0.1.0
              SQL*Plus 9.2.0.1.0
              Oracle Call Interface (OCI) 9.2.0.1.0
              SQL*Loader 9.2.0.1.0
              Secure Socket Layer 9.2.0.1.0
              Oracle Internet Directory Client 9.2.0.1.0
              Oracle Net Listener 9.2.0.1.0
              Advanced Replication 9.2.0.1.0
              Oracle Complete DSS Starter Database 9.2.0.1.0
              Oracle Complete OLTP Starter Database 9.2.0.1.0
              Oracle Starter Database 9.2.0.1.0
              Oracle Message Gateway Common Files 9.2.0.1.0
              Oracle Common Schema Demos 9.2.0.1.0
              Change Management Common Files 9.2.0.1.0
              Oracle UIX 2.0.20.0.0
              Oracle Help for the Web 1.0.7.0.0
              XML Class Generator for C++ 9.2.0.1.0
              XML Parser for C++ 9.2.0.1.0
              XML Parser for Oracle JVM 9.2.0.1.0
              XML Transx 9.2.0.1.0
              XML Transviewer Beans 9.2.0.1.0
              XML Class Generator for Java 9.2.0.1.0
              XSQL Servlet 9.2.0.1.0
              XML Parser for PL/SQL 9.2.0.1.0
              Oracle SQLJ 9.2.0.1.0
              Enterprise Manager Common Files 9.2.0.1.0
              Common Files For Generic Connectivity Using OLEDB 9.2.0.1.0
              Oracle SOAP Client 2.0.0.0.0a
              Oracle Workflow Manager 9.2.0.1.0
              Oracle Net Integration 9.2.0.1.0
              Oracle XML Runtime Components 9.2.0.1.0
              Enterprise Manager Database Applications 9.2.0.1.0
              Oracle SOAP Server 2.0.0.0.0a
              Oracle Database Demos 9.2.0.1.0
              Oracle Ultra Search Common Files 9.2.0.1.0
              Enterprise Manager Console 9.2.0.1.0
              Enterprise Manager Integrated Applications 9.2.0.1.0
              Enterprise Manager Client 9.2.0.1.0
              Database Workspace Manager 9.2.0.1.0
              Oracle interMedia Java Advanced Imaging 9.2.0.1.0
              Oracle interMedia Client Compatibility Files 9.2.0.1.0
              Oracle interMedia Java Media Framework Client 9.2.0.1.0
              Oracle interMedia Client Demos 9.2.0.1.0
              Oracle interMedia Web Client 9.2.0.1.0
              BC4J Runtime for Database 9.0.2.692.1
              Oracle Change Management Pack 9.2.0.1.0
              Oracle interMedia Annotator 9.2.0.1.0
              Data Management Services Common Files 9.2.0.1.0
              Oracle interMedia Common Files 9.2.0.1.0
              Oracle interMedia Image 9.2.0.1.0
              Oracle interMedia Audio 9.2.0.1.0
              Oracle interMedia Video 9.2.0.1.0
              Database Upgrade Assistant 9.2.0.1.0
              Oracle Intelligent Agent Config Tool 9.2.0.1.0
              Oracle Intelligent Agent 9.2.0.1.0
              PL/SQL Embedded Gateway 9.2.0.1.0
              Oracle HTTP Server Extensions 9.2.0.1.0
              Oracle eBusiness Management Extensions 9.2.0.1.0
              Oracle EMD Agent Extensions 9.2.0.1.0
              Oracle interMedia Client Option 9.2.0.1.0
              Oracle SOAP for JServ 2.0.0.0.0a
              MIcrosoft SQLServer(TM) Extensions 9.2.0.1.0
              Oracle Management Pack for Oracle Applications 9.2.0.1.0
              Oracle Windows Interfaces 9.2.0.1.0
              Export/Import 9.2.0.1.0
              Apache Configuration for Oracle XML Developer's Kit 9.2.0.1.0
              Oracle Tuning Pack 9.2.0.1.0
              Oracle Forms Extensions 9.2.0.1.0
              Oracle XML Developer's Kit 9.2.0.1.0
              Oracle Java Server Pages 1.1.3.1.0
              Oracle Diagnostics Pack 9.2.0.1.0
              Oracle Ultra Search Middle-Tier 9.2.0.1.0
              Oracle Dynamic Services Server 9.2.0.1.0
              Oracle Mod PL/SQL Gateway 3.0.9.8.3b
              Apache Configuration for Oracle Java Server Pages 1.1.2.3.0
              Oracle Text 9.2.0.1.0
              Generic Connectivity Common Files 9.2.0.1.0
              New Database ID 9.2.0.1.0
              Database SQL Scripts 9.2.0.1.0
              Generic Connectivity Using OLEDB - SQL 9.2.0.1.0
              Oracle HTTP Server 9.2.0.1.0
              XML 9.2.0.1.0
              Generic Connectivity Using OLEDB - FS 9.2.0.1.0
              iSQL*Plus 9.2.0.1.0
              Generic Connectivity Using ODBC 9.2.0.1.0
              Enterprise Manager Webserver Integration 9.2.0.1.0
              Reporting Framework 9.2.0.1.0
              Oracle interMedia Locator 9.2.0.1.0
              Oracle Management Server 9.2.0.1.0
              Oracle Ultra Search Server 9.2.0.1.0
              Oracle interMedia 9.2.0.1.0
              Oracle Trace 9.2.0.1.0
              Oracle9i Syndication Server 9.2.0.1.0
              Enterprise Manager Web Site 9.2.0.1.0
              Oracle Applications Extensions 9.2.0.1.0
              Oracle Intelligent Agent Extensions 9.2.0.1.0
              Oracle Programmer 9.2.0.1.0
              Migration Utility 9.2.0.1.0
              Oracle Enterprise Manager Products 9.2.0.1.0
              Oracle9i Development Kit 9.2.0.1.0
              Oracle Advanced Security 9.2.0.1.0
              Oracle JVM 9.2.0.1.0
              Database Verify Utility 9.2.0.1.0
              PL/SQL 9.2.0.1.0
              Oracle Database Utilities 9.2.0.1.0
              Oracle9i 9.2.0.1.0
              Oracle Net Services 9.2.0.1.0
              Oracle COM Automation Feature 9.2.0.1.0
              Oracle Data Mining 9.2.0.1.0
              Oracle OLAP 9.2.0.1.0
              Oracle Spatial 9.2.0.1.0
              Oracle Partitioning 9.2.0.1.0
              Enterprise Edition Options 9.2.0.1.0
              Oracle9i Database 9.2.0.1.0
    Starting to execute optional autolaunch configuration tools
    Launched configuration tool Oracle Net Configuration Assistant
    Command which is being spawned is C:\Program Files\Oracle\jre\1.1.8\bin/jrew.exe -Duser.dir=C:\oracle\ora92\network\jlib -classpath ";C:\Program Files\Oracle\jre\1.1.8\lib\rt.jar;C:\oracle\ora92\jlib\ewt3.jar;C:\oracle\ora92\jlib\ewtcompat-3_3_15.jar;C:\oracle\ora92\network\jlib\NetCA.jar;C:\oracle\ora92\network\jlib\netcam.jar;C:\oracle\ora92\jlib\netcfg.jar;C:\oracle\ora92\jlib\help3.jar;C:\oracle\ora92\jlib\oracle_ice5.jar;C:\oracle\ora92\jlib\share.jar;C:\oracle\ora92\jlib\swingall-1_1_1.jar;C:\Program Files\Oracle\jre\1.1.8\lib\i18n.jar;C:\oracle\ora92\jlib\srvm.jar;C:\oracle\ora92\network\tools" oracle.net.ca.NetCA /orahome C:\oracle\ora92 /orahnam OraHome92 /instype typical /inscomp client,oraclenet,javavm,server,ano /insprtcl tcp,nmp,tcps /cfg local /authadp NO_VALUE /nodeinfo NO_VALUE /responseFile C:\oracle\ora92\network\install\netca_typ.rsp
    Configuration tool Oracle Net Configuration Assistant succeeded
    Result code for launching of configuration tool is 0
    Launched configuration tool Oracle Database Configuration Assistant
    Command which is being spawned is C:\Program Files\Oracle\jre\1.1.8\bin/jrew.exe -DORACLE_HOME="C:\oracle\ora92" -DJDBC_PROTOCOL="thin" -classpath ";C:\Program Files\Oracle\jre\1.1.8\lib\i18n.jar;C:\Program Files\Oracle\jre\1.1.8\lib\rt.jar;C:\oracle\ora92\jlib\ewt3.jar;C:\oracle\ora92\jlib\kodiak.jar;C:\oracle\ora92\jlib\ewtcompat-3_3_15.jar;C:\oracle\ora92\lib\xmlparserv2.jar;C:\oracle\ora92\jdbc\lib\classes111.zip;C:\oracle\ora92\classes;C:\oracle\ora92\jlib\gss-1-1.zip;C:\oracle\ora92\jlib\oembase-9_2_0.jar;C:\oracle\ora92\jlib\srvm.jar;C:\oracle\ora92\assistants\jlib\assistantsCommon.jar;C:\oracle\ora92\jlib\share.jar;C:\oracle\ora92\jlib\swingall-1_1_1.jar;C:\oracle\ora92\assistants\dbca\jlib\dbca.jar;C:\oracle\ora92\jlib\help3.jar;C:\oracle\ora92\jlib\oracle_ice5.jar;C:\oracle\ora92\jlib\netcfg.jar;C:\oracle\ora92\lib\vbjorb.jar;C:\oracle\ora92\lib\vbjtools.jar;C:\oracle\ora92\lib\vbjapp.jar;" oracle.sysman.assistants.dbca.Dbca -progress_only -createDatabase -templateName General_Purpose.dbc -gdbName orcl -sid orcl -datafileJarLocation C:\oracle\ora92\assistants\dbca\templates -datafileDestination C:\oracle\oradata -responseFile NO_VALUE -characterset WE8MSWIN1252 -passwordDialog true Protected value, not to be logged

  • Install of Oracle SOA Suite 10.1.3.1 Developer Preview fails

    My install fails every time (tried 4 now) at configuration of Oracle Process Management and Notification...
    Here is the install log, I've left it in an 'In Progress' state for about 12 hours...
    deploy.restoreServState:
    [stopwatch] [deploy.time: 1:11.523 sec]
    install.buildApps.clean.ccore:
    [delete] Deleting: C:\product\10.1.3.1\OracleAS\owsm\ears\ccore.ear
    [delete] Deleting: C:\product\10.1.3.1\OracleAS\owsm\wars\ccore.war
    install.buildApps.clean.coreman:
    [delete] Deleting: C:\product\10.1.3.1\OracleAS\owsm\ears\coreman.ear
    [delete] Deleting: C:\product\10.1.3.1\OracleAS\owsm\wars\coreman.war
    install.buildApps.clean.gateway:
    [delete] Deleting: C:\product\10.1.3.1\OracleAS\owsm\ears\gateway.ear
    [delete] Deleting: C:\product\10.1.3.1\OracleAS\owsm\wars\gateway.war
    install.buildApps.clean.policymanager:
    [delete] Deleting: C:\product\10.1.3.1\OracleAS\owsm\ears\policymanager.ear
    [delete] Deleting: C:\product\10.1.3.1\OracleAS\owsm\wars\policymanager.war
    install.buildApps.clean:
    [delete] Deleting directory C:\product\10.1.3.1\OracleAS\owsm\ears
    BUILD SUCCESSFUL
    Total time: 2 minutes 28 seconds
    End output from spawned process.
    Configuration assistant "Oracle Web Services Manager Configuration Assistant" succeeded
    Result code for launching of configuration assistant is: 0
    Launched configuration assistant 'Oracle Process Management and Notification Configuration Assistant'
    Tool type is: Recommended.
    The command being spawned is: 'C:\\product\\10.1.3.1\\OracleAS\\perl\\5.8.3\\bin\\MSWin32-x86-multi-thread\\perl.exe C:\product\10.1.3.1\OracleAS\config\launchopmnCA.pl'
    Start output from spawned process:
    C:\product\10.1.3.1\OracleAS\opmn\bin\opmnctl.exe start reload restartproc
    Launching C:\product\10.1.3.1\OracleAS\opmn\bin\opmnctl.exe start
    opmnctl: opmn already running
    reload status 0
    Launching C:\product\10.1.3.1\OracleAS\opmn\bin\opmnctl.exe reload
    The OUICA command is launched from C:\product\10.1.3.1\OracleAS\oui\bin\ouica.bat.-----------------------------------------------------------------------------
    *** Starting OUICA ***
    Oracle Home set to C:\product\10.1.3.1\OracleAS
    Configuration directory is set to C:\product\10.1.3.1\OracleAS\cfgtoollogs. All xml files under the directory will be processed
    Error:*** Alert: The assistant you are trying to stop is a "Recommended" assistant. Not successfully running any "Recommended" assistant means your system will not be correctly configured.
    Do you wish to proceed? ***

    Hi,
    If you downloaded Oracle SOA it may be corrupted.
    Download it again.
    Also disable all firewals and antispyware you have in your system and free the computer's memory of all unnecesary runing programs to make sure you have enough memory available for install.
    All the best,
    Alexandru

  • 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

Maybe you are looking for