Installing 10G R2 on rhel5

My problem is that i can't install 10.2.0.1 on rhel5, because it's not supported. Rhel5 support came with release of 10.2.0.2 or later. I can't find any later release, but the poor old 10.2.0.1 which is available to download.
How can I solve this?

Well the very simple way to start the installation,if there you are getting the issue is to make the installer not to check the pre--requistes.You can use,
./runInstaller -ignoreSysPrereqsI can't remember the file name where you can add RHEL5 info and you can install Oracle10g without any issues. I guess its Sqlparams but I shall verify and get back.
Update
The file name is oraparam.ini. Modify that file and add RHEL5 there and installer will start. Thanks to Leo for it :-).
HTH
Aman....
Edited by: Aman.... on Sep 18, 2008 5:50 PM

Similar Messages

  • Can not install 10g on RHEL5

    Hi
    I am trying to install Oracle 10g DB on RHEL5. Now I installed Oracle 11g on RHEL5 without an issue but installing Oracle 10g (on another machine) returns this error message;
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2009-06-25_05-47-15AM. Please wait ...[user01@localhost database]$ Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/OraInstall2009-06-25_05-47-15AM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(Unknown Source)
    at java.lang.ClassLoader.loadLibrary(Unknown Source)
    at java.lang.Runtime.loadLibrary0(Unknown Source)
    at java.lang.System.loadLibrary(Unknown Source)
         at sun.security.action.LoadLibraryAction.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
    at sun.awt.NativeLibLoader.loadLibraries(Unknown Source)
    at sun.awt.DebugHelper.<clinit>(Unknown Source)
    at java.awt.Component.<clinit>(Unknown Source)
    When I look at the error message a lot says to set the ORACLE_HOME. but seeing its not even installed yet, what would I enter?
    thanks

    user10947052 wrote:
    You might need to install libXp-1.0.0-8.i386.rpmDid you even read the other responses ?

  • HOW TO INSTALL 10G ON RHEL5

    CAN ANY ONE HELP ME HOE TO INSTALL 10G ON RHEL5

    You don't need to use capital letter to post the request, it looks as if you were yelling, your thread will be processed just the same as any other thread in the forum.
    Installation requirements:
    1. Installing required packages
    The minimum required packages given here are sufficient only if Linux has been installed without customizing the package selection. This list is based upon a "default-RPMs" installation of RHEL AS/ES 5. Additional RPMs may be needed if a "less-than-default-RPMs" installation of RHEL AS/ES 5 is performed. For more information, please refer to Note 376183.1 "Defining a "default RPMs" installation of the RHEL OS".
    The version numbers for these packages given below are the minimum version required. If you have the packages with higher versions than the versions mentioned in below example, you can install the higher version packages.
    (i) gcc-c++-4.1.1-52.el5.i386.rpm and all its dependent packages. The dependent packages are
    gcc-4.1.1-52.el5.i386.rpm
    libstdc++-devel-4.1.1-52.el5.i386.rpm
    glibc-devel-2.5-12.i386.rpm
    glibc-headers-2.5-12.i386.rpm
    libgomp-4.1.1-52.el5.i386.rpm
    (ii) libXp-1.0.0-8.i386.rpm
    (iii) compat-libstdc++-296-2.96-138.i386.rpm
    (iv) compat-libstdc++-33-3.2.3-61.i386.rpm
    Install all these packages from the directory Server in CD#2 of RHEL 5 by the single command.
    # rpm -ivh gcc-c++-4.1.1-52.el5.i386.rpm gcc-4.1.1-52.el5.i386.rpm
    libstdc++-devel-4.1.1-52.el5.i386.rpm glibc-devel-2.5-12.i386.rpm
    glibc-headers-2.5-12.i386.rpm libgomp-4.1.1-52.el5.i386.rpm
    libXp-1.0.0-8.i386.rpm compat-libstdc++-296-2.96-138.i386.rpm
    compat-libstdc++-33-3.2.3-61.i386.rpm
    (v) compat-db-4.2.52-5.1.i386.rpm
    This package is available in the directory Server in CD#3 of RHEL 5. Install this package by the command
    # rpm -ivh compat-db-4.2.52-5.1.i386.rpm
    2. Set the kernel parameters
    Add the following the lines in the file /etc/sysctl.conf
    kernel.shmmni = 4096
    kernel.sem = 250 32000 100 128
    fs.file-max = 65536
    net.ipv4.ip_local_port_range = 1024 65000
    net.core.rmem_default = 1048576
    net.core.rmem_max = 1048576
    net.core.wmem_default = 262144
    net.core.wmem_max = 262144
    To place these changes into effect, execute the command
    # sysctl -p
    3. Create Oracle user and groups
    # groupadd oinstall
    # groupadd dba
    # useradd -g oinstall -G dba oracle
    # passwd oracle
    4. Create the required directories for Oracle Base and change the ownership
    For example
    # mkdir -p /u01/app/oracle
    # chown -R oracle:oinstall /u01/app/oracle
    5. Set the session limits for Oracle user
    Add the following lines to the /etc/security/limits.conf file
    oracle soft nproc 2047
    oracle hard nproc 16384
    oracle soft nofile 1024
    oracle hard nofile 65536
    Add the following line in the /etc/pam.d/login file
    session required pam_limits.so
    Add the following lines to the /etc/profile.
    if [ $USER = "oracle" ]; then
         if [ $SHELL = "/bin/ksh" ]; then
              ulimit -p 16384
              ulimit -n 65536
         else
              ulimit -u 16384 -n 65536
         fi
    fi
    6. Configure the Oracle user's environment
    Configuring the oracle User's Environment, using the appropriate section of "Oracle® Database Quick Installation Guide 10g Release 2 (10.2) for Linux x86". Note that setting $ORACLE_BASE (not $ORACLE_HOME) in the environment will ease a couple of entries in the Oracle Universal Installer.
    For example, if oracle user is using bash shell, and has the home directory as /home/oracle,
    The following lines to be added to /home/oracle/.bash_profile
    export ORACLE_BASE=/u01/app/oracle
    export ORACLE_SID=orcl
    unset ORACLE_HOME
    7. Invoking OUI
    Log in as Oracle user and start installation by any one of the following methods. This is required because Oracle 10.2 expects the OS to be RHEL 3 or RHEL 4.
    Method 1:
    $ ./runInstaller -ignoreSysPrereqs
    Method 2:
    Copy the oraparam.ini from the installation source install/oraparam.ini to /tmp directory.
    Edit the file /tmp/oraparam.ini
    Change the following section :
    Before
    [Certified Versions]
    Linux=redhat-3,SuSE-9,redhat-4,UnitedLinux-1.0,asianux-1,asianux-2
    After
    [Certified Versions]
    Linux=redhat-3,SuSE-9,redhat-4,UnitedLinux-1.0,asianux-1,asianux-2,redhat-5
    Now invoke the runInstaller as follows :
    $ ./runInstaller -paramFile /tmp/oraparam.ini
    ~ Madrid

  • Error While installing 10g grid

    Hi All,
    While installing 10g grid for E-Business Suite 11.5.10.2 on linux-32bit machine
    This is the error message i got while installing.
    INFO: Command = /u01/oracle10g_grid/oms10g/perl/bin/perl /u01/oracle10g_grid/oms10g/install/oneoffs/applyOneoffs.pl automatic
    Archive: /u01/oracle10g_grid/oms10g/install/oneoffs/p4067264_101042_GENERIC.zip
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/files/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/files/lib/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/files/lib/xmlparserv2.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/files/lib/xmlparserv2.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/files/lib/xmlparserv2.jar/oracle/xml/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/files/lib/xmlparserv2.jar/oracle/xml/parser/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/files/lib/xmlparserv2.jar/oracle/xml/parser/v2/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/files/lib/xmlparserv2.jar/oracle/xml/parser/v2/XMLReader.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/etc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/etc/config/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/etc/config/inventory
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/etc/config/actions
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/etc/xml/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/etc/xml/GenericActions.xml
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/etc/xml/ShiphomeDirectoryStructure.xml
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4067264/README.txt
    Now applying patch:/u01/oracle10g_grid/oms10g/install/oneoffs/p4067264_101042_GENERIC.zip
    OutPut of Command is Invoking OPatch 10.2.0.4.6
    Oracle Interim Patch Installer version 10.2.0.4.6
    Copyright (c) 2009, Oracle Corporation. All rights reserved.
    Oracle Home : /u01/oracle10g_grid/oms10g
    Central Inventory : /etc/oraInventory
    from : /u01/oracle10g_grid/oms10g/oraInst.loc
    OPatch version : 10.2.0.4.6
    OUI version : 10.2.0.5.0
    OUI location : /u01/oracle10g_grid/oms10g/oui
    Log file location : /u01/oracle10g_grid/oms10g/cfgtoollogs/opatch/opatch2010-02-16_22-08-59PM.log
    Patch history file: /u01/oracle10g_grid/oms10g/cfgtoollogs/opatch/opatch_history.txt
    ApplySession applying interim patch '4067264' to OH '/u01/oracle10g_grid/oms10g'
    Running prerequisite checks...
    Prerequisite check "CheckApplicable" failed.
    The details are:
    Patch 4067264: Required component(s) missing : [ oracle.rsf.xdk_rsf, 10.1.0.4.2, higher version 10.1.0.5.0 found. ]
    System intact, OPatch will not attempt to restore the system
    OPatch failed with error code 74
    Applying of patch /u01/oracle10g_grid/oms10g/install/oneoffs/p4067264_101042_GENERIC.zip failed
    Archive: /u01/oracle10g_grid/oms10g/install/oneoffs/p4141076_101042_GENERIC.zip
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12.jar/oracle/jdbc/pool/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12.jar/oracle/jdbc/pool/OracleImplicitConnectionCache.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12.zip/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc
    /lib/classes12.zip/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12.zip/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12.zip/oracle/jdbc/pool/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12.zip/oracle/jdbc/pool/OracleImplicitConnectionCache.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12dms.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12dms.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12dms.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12dms.jar/oracle/jdbc/pool/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12dms.jar/oracle/jdbc/pool/OracleImplicitConnectionCache.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/pool/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/pool/OracleImplicitConnectionCache.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14dms.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14dms.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14dms.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc
    /lib/ojdbc14dms.jar/oracle/jdbc/pool/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14dms.jar/oracle/jdbc/pool/OracleImplicitConnectionCache.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12_g.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12_g.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12_g.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12_g.jar/oracle/jdbc/pool/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12_g.jar/oracle/jdbc/pool/OracleImplicitConnectionCache.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12_g.zip/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12_g.zip/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12_g.zip/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12_g.zip/oracle/jdbc/pool/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12_g.zip/oracle/jdbc/pool/OracleImplicitConnectionCac
    he.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12dms_g.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12dms_g.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12dms_g.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12dms_g.jar/oracle/jdbc/pool/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/classes12dms_g.jar/oracle/jdbc/pool/OracleImplicitConnectionCache.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14_g.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14_g.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14_g.jar/
    oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14_g.jar/oracle/jdbc/pool/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14_g.jar/oracle/jdbc/pool/OracleImplicitConnectionCache.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14dms_g.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14dms_g.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/pool/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/pool/OracleImplicitConnectionCache.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/etc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/etc/config/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/etc/config/inventory
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/etc/config/actions
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/etc/xml/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/etc/xml/GenericActions.xml
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/etc/xml/ShiphomeDirectoryStructure.xml
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4141076/README.txt
    Now applying patch:/u01/oracle10g_grid/oms10g/install/oneoffs/p4141076_101042_GENERIC.zip
    OutPut of Command is Invoking OPatch 10.2.0.4.6
    Oracle Interim Patch Installer version 10.2.0.4.6
    Copyright (c) 2009, Oracle Corporation. All rights reserved.
    Oracl
    e Home : /u01/oracle10g_grid/oms10g
    Central Inventory : /etc/oraInventory
    from : /u01/oracle10g_grid/oms10g/oraInst.loc
    OPatch version : 10.2.0.4.6
    OUI version : 10.2.0.5.0
    OUI location : /u01/oracle10g_grid/oms10g/oui
    Log file location : /u01/oracle10g_grid/oms10g/cfgtoollogs/opatch/opatch2010-02-16_22-09-07PM.log
    Patch history file: /u01/oracle10g_grid/oms10g/cfgtoollogs/opatch/opatch_history.txt
    ApplySession applying interim patch '4141076' to OH '/u01/oracle10g_grid/oms10g'
    Running prerequisite checks...
    Prerequisite check "CheckApplicable" failed.
    The details are:
    Patch 4141076: Required component(s) missing : [ oracle.rsf.dbjava_rsf, 10.1.0.4.2, higher version 10.1.0.5.0 found. ]
    System intact, OPatch will not attempt to restore the system
    OPatch failed with error code 74
    Applying of patch /u01/oracle10g_grid/oms10g/install/oneoffs/p4141076_101042_GENERIC.zip failed
    Archive: /u01/oracle10g_grid/oms10g/install/oneoffs/p4488715_101042_GENERIC.zip
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.jar/oracle/jdbc/driver/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.jar/oracle/jdbc/driver/OracleStatement.class
    inflating: /u01/oracle1
    0g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.jar/oracle/jdbc/driver/T4CStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.jar/oracle/jdbc/driver/T4CCallableStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.jar/oracle/jdbc/driver/T4CPreparedStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.jar/oracle/jdbc/driver/T4CTTIrxd.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.jar/oracle/jdbc/driver/T4C8Oall.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.zip/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.zip/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.zip/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.zip/oracle/jdbc/driver/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.zip/oracle/jdbc/driver/OracleStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.zip/oracle/jdbc/driver/T4CStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.zip/oracle/jdbc/driver/T4CCallableStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.zip/oracle/jdbc/driver/T4CPreparedStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdb
    c/lib/classes12.zip/oracle/jdbc/driver/T4CTTIrxd.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12.zip/oracle/jdbc/driver/T4C8Oall.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms.jar/oracle/jdbc/driver/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms.jar/oracle/jdbc/driver/OracleStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms.jar/oracle/jdbc/driver/T4CStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms.jar/oracle/jdbc/driver/T4CCallableStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms.jar/oracle/jdbc/driver/T4CPreparedStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms.jar/oracle/jdbc/driver/T4CTTIrxd.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms.jar/oracle/jdbc/driver/T4C8Oall.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14.jar/
    creatin
    g: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/driver/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/driver/OracleStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/driver/T4CStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/driver/T4CCallableStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/driver/T4CPreparedStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/driver/T4CTTIrxd.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14.jar/oracle/jdbc/driver/T4C8Oall.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms.jar/oracle/jdbc/
    creating: /u01/o
    racle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms.jar/oracle/jdbc/driver/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms.jar/oracle/jdbc/driver/OracleStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms.jar/oracle/jdbc/driver/T4CStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms.jar/oracle/jdbc/driver/T4CCallableStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms.jar/oracle/jdbc/driver/T4CPreparedStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms.jar/oracle/jdbc/driver/T4CTTIrxd.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms.jar/oracle/jdbc/driver/T4C8Oall.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.jar/oracle/jdbc/driver/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.jar/oracle/jdbc/driver/OracleStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.jar/oracle/jdbc/driver/T4CStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.jar/oracle/jdbc/driver/T4CCallableStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.jar/oracle/jdbc/driver/T4CPreparedStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.jar/oracle/jdbc/driver/T4CTTIrxd.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.jar/oracle/jdbc/driver/T4C8Oall.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.zip/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.zip/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.zip/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.zip/oracle/jdbc/driver/
    inflating: /u01/oracl
    e10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.zip/oracle/jdbc/driver/OracleStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.zip/oracle/jdbc/driver/T4CStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.zip/oracle/jdbc/driver/T4CCallableStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.zip/oracle/jdbc/driver/T4CPreparedStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.zip
    /oracle/jdbc/driver/T4CTTIrxd.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12_g.zip/oracle/jdbc/driver/T4C8Oall.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms_g.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms_g.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms_g.jar/or
    acle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms_g.jar/oracle/jdbc/driver/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms_g.jar/oracle/jdbc/driver/OracleStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms_g.jar/oracle/jdbc/driver/T4CStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/fi
    les/jdbc/lib/classes12dms_g.jar/oracle/jdbc/driver/T4CCallableStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms_g.jar/oracle/jdbc/driver/T4CPreparedStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms_g.jar/oracle/jdbc/driver/T4CTTIrxd.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/classes12dms_g.jar/oracle/jdbc/driver/T4C8Oall.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14_g.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14_g.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14_g.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14_g.jar/oracle/jdbc/driver/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14_g.jar/oracle/jdbc/driver/OracleStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14
    _g.jar/oracle/jdbc/driver/T4CStatement.class 
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14_g.jar/oracle/jdbc/driver/T4CCallableStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14_g.jar/oracle/jdbc/driver/T4CPreparedStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14_g.jar/oracle/jdbc/driver/T4CTTIrxd.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14_g.jar/oracle/jdbc/driver/T4C8Oall.class
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms_g.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms_g.jar/oracle/
    creating: /u0
    1/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/driver/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/driver/OracleStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/driver/T4CStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/driver/T4CCallableStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/driver/T4CPreparedStatement.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/driver/T4CTTIrxd.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/files/jdbc/lib/ojdbc14dms_g.jar/oracle/jdbc/driver/T4C8Oall.class
    creating: /u01/o
    racle10g_grid/oms10g/install/oneoffs/4488715/etc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/etc/config/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/etc/config/inventory
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/etc/config/actions
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/etc/xml/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/etc/xml/GenericActions.xml
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/etc/xml/ShiphomeDirectoryStructure.xml
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4488715/README.txt
    Now applying patch:/u01/oracle10g_grid/oms10g/install/oneoffs/p4488715_101042_GENERIC.zip
    OutPut of Command is Invok
    ing OPatch 10.2.0.4.6
    Oracle Interim Patch Installer version 10.2.0.4.6
    Copyright (c) 2009, Oracle Corporation. All rights reserved.
    Oracle Home : /u01/oracle10g_grid/oms10g
    Central Inventory : /etc/oraInventory
    from : /u01/oracle10g_grid/oms10g/oraInst.loc
    OPatch version : 10.2.0.4.6
    OUI version : 10.2.0.5.0
    OUI location : /u01/oracle10g_grid/oms10g/oui
    Log file location : /u01/oracle10g_grid/oms10g/cfgtoollogs/opatch/opatch2010-02-16_22-09-22PM.log
    Patch history file: /u01/oracle10g_grid/oms10g/cfgtoollogs/opatch/opatch_history.txt
    ApplySession applying interim patch '4488715' to OH '/u01/oracle10g_grid/oms10g'
    Ru
    nning prerequisite checks...
    Prerequisite check "CheckApplicable" failed.
    The details are:
    Patch 4488715: Required component(s) missing : [ oracle.rsf.dbjava_rsf, 10.1.0.4.2, higher version 10.1.0.5.0 found. ]
    System intact, OPatch will not attempt to restore the system
    OPatch failed with error code 74
    Applying of patch /u01/oracle10g_grid/oms10g/install/oneoffs/p4488715_101042_GENERIC.zip failed
    Archive: /u01/oracle10g_grid/oms10g/install/oneoffs/p4547445_101042_GENERIC.zip
    creating: /u01/oracle10g
    _grid/oms10g/install/oneoffs/4547445/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/lib/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/lib/xmlparserv2.jar/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/lib/xmlparserv2.jar/oracle/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/lib/xmlparserv2.jar/orac
    le/xml/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/lib/xmlparserv2.jar/oracle/xml/parser/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/lib/xmlparserv2.jar/oracle/xml/parser/v2/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/lib/xmlparserv2.jar/oracle/xml/parser/v2/XMLAttr.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/lib/xmlparserv2.jar/oracle/xml/parser/v2/XMLPrintDriver.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/lib/xmlparserv2.jar/oracle/xml/parser/v2/XMLSAXSerializer.class
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/files/lib/xmlparserv2.jar/oracle/xml/parser/v2/XSLSAXPrintDriver.class
    creating: /u0
    1/oracle10g_grid/oms10g/install/oneoffs/4547445/etc/
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/etc/config/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/etc/config/inventory
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/etc/config/actions
    creating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/etc/xml/
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/etc/xml/GenericActions.xml
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/etc/xml/ShiphomeDirectoryStructure.xml
    inflating: /u01/oracle10g_grid/oms10g/install/oneoffs/4547445/README.txt
    Now applying patch:/u01/oracle10g_grid/oms10g/install/oneoffs/p4547445_101042_GENERIC.zip
    OutPut of Command is Invoking OPatch 10.2.0.4.6
    Oracle Interim Patch Installer version 10.2.0.4.6
    Copyright (c) 2009, Oracle Corporation. All rights reserved.
    Oracle Home : /u01/oracle10g_grid/oms10g
    Central Inventory : /etc/oraInventory
    from : /u01/oracle10g_grid/oms10g/oraInst.loc
    OPatch version : 10.2.0.4.6
    OUI version : 10.2.0.5.0
    OUI location : /u01/oracle10g_grid/oms10g/oui
    Log file location : /u01/oracle10g_grid/oms10g/cfgtoollogs/opat
    ch/opatch2010-02-16_22-09-32PM.log
    Patch history file: /u01/oracle10g_grid/oms10g/cfgtoollogs/opatch/opatch_history.txt
    ApplySession applying interim patch '4547445' to OH '/u01/oracle10g_grid/oms10g'
    Running prerequisite checks...
    Prerequisite check "CheckApplicable" failed.
    The details are:
    Patch 4547445: Required component(s) missing : [ oracle.rsf.xdk_rsf, 10.1.0.4.2, higher version 10.1.0.5.0 found. ]
    System intact, OPatch will not attempt to restore the system
    OPatch failed with error code 74
    Thanks,
    vinay

    Please check whether the Opatch utility version and the patch binaries are compatible . please go thru readme.html available with the patch binaries.

  • Install 10g with 8.1.7/8.1.6 Fails

    I am trying to install 10g on Solaris 5.8 Sparc. The system has 8.1.6 and 8.1.7 on it. The install fails with a file not found exception. The file it is looking for is /u01/app/oracle/product/8.1.6/inventory/ContentsXML/oraclehomeproperties.xml.
    Wasn't ContentsXML introduced in 9i?
    Is there a way to install 10g without uninstalling 8.1.6 and 8.1.7?
    Thanks in advance for any help and/or wisdom you can provide.

    This seems to be an oracle inventory problem.
    I'm no longer sure where the inventory identifier is on Solaris - on Linux it's held in the /etc/oraInst.loc file. If you can find that, you could blank it out and set up a brand new inventory location for 10g. (Watch out, though, as you need the correct inventory locations when you wan to do patches or DB s/w management for the 8i version. SO back it up before wiping it.)

  • Configuration Issue while Installing 10g

    Hi,
    I am trying to install 10g (10.3.1.0)
    But while in configuration step am getting error
    ERROR :
    Failed at "Could not get DeploymentManager".
    This is typically the result of an invalid deployer URI format being supplied, the target server not being in a started state or incorrect authentication details being supplied.
    More information is available by enabling logging -- please see the Oracle Containers for J2EE Configuration and Administration Guide for details.
    My System configuration :
    OS : windows 7 64-bit
    Processor : i3
    Can anyone please advise me on how to do this?

    Hi',
    Please verify if we can install SOA 10G on Windows 7, also its 64 bit,
    so make sure you are not using 32 bit software's there.
    Windows XP is recommended for Oracle SOA development.
    -Yatan

  • Installing 10G R2 on windows XP

    Hi I am trying to install 10G R2 on XP, on my D Drive. C drive has 2 valid different Oracle homes. The install goes fine, but when netca tries to create the listener it fails. Even if I add the relevant entries into all listener.ora and SQL.net files in other homes it still fails.
    Can anyone help
    many thanks
    Mark

    the listener is not created as a windows service. Below is the output from the $ORA_HOME\cfgtoollogs\netca\netca.log:
    Oracle Net Services Configuration:
    ProfileException: Could not create Profile: TNS-04414: File error
    java.lang.NullPointerException
         at oracle.net.ca.ConfigureProfile.setProfileParam(Unknown Source)
         at oracle.net.ca.ConfigureProfile.setDefaultProfileParams(Unknown Source)
         at oracle.net.ca.InitialSetup.setupConfigObjects(Unknown Source)
         at oracle.net.ca.InitialSetup.<init>(Unknown Source)
         at oracle.net.ca.NetCA.main(Unknown Source)
    Oracle Net Services configuration failed. The exit code is -1

  • Can we install oracle rac11gR2  using RHEL5.5

    Dear All
    can we install oracle rac11gR2 using RHEL5.5 ? because we have to install it on production env. if so is there any requirement and pdf guide for same
    please reply soon
    Thanks in advance

    Hi;
    can we install oracle rac11gR2 using RHEL5.5 ? because we have to install it on production env. if so is there any requirement and pdf guide for sameYes you can.Please check below link
    http://download.oracle.com/docs/cd/E11882_01/install.112/e17214/toc.htm
    Also see:
    Oracle Database on Unix AIX,HP-UX,Linux,Mac OS X,Solaris,Tru64 Unix Operating Systems Installation and Configuration Requirements Quick Reference (8.0.5 to 11.2) [ID 169706.1]
    Master Note of Linux OS Requirements for Database Server [ID 851598.1]
    Regard
    Helios

  • De-installing 10g RAC on Solaris 10

    Hi,
    Does anyone knows how to manually de-installing 10g rac on solairs 10?
    I did not following the correct steps to de-install RAC from the RAC installation Guide.
    I need to reuse this host for non-rac 10gr2 on different ORACLE_HOME.
    ./localconfig reset $ORACLE_HOME
    Oracle CSS service would not start as installed
    Automatic Storage Management(ASM) cannot be used until Oracle CSS service is started
    cat ./log/wchost/alertwchost.log
    [client(9029)]CRS-1006:The OCR location /oracle/product/10.2.0/cdata/localhost/local.ocr is inaccessible. Details in /oracle/product/10.2.0/log/wchost/client/clscfg_9029.log.
    Thanks!
    R

    Metalink Note 239998.1 tells you how to tidy things up after installation and deinstallation problems

  • How to install 10g Discoverer on 11.5.10 solaries application server

    Can some one help me in giving step by step installation of 10g Discoverer on 11.5.10 application server.This is on Solaris 5.9.
    The metalink note 313418.1, seems to be little incomprehensbile.
    IF any one has practically installed & documented , please disclosed it.
    It will be more easy
    Naveen

    Before you going to install Make sure The Following Things
    1 Whether you going to upgrade Discoverer 4i into 10g
    2.Whether you going to install 10G on seperate oraclehome or a server.
    If you select second option you make sure wherther you plans to implement SSO to access the Discoverer or not.Can you tell me your plan.
    Depend upon your plan i will send the steps.
    Thanks
    senthil

  • Configring and instaling 10g RAC on two Nods win 2003 Local Area

    All Experts
    I want to configure and instal 10g RAC using three database server on difirent network groups (Head office , processing, stitching). i am unable to configure ip etc. ip address is as:
    work group ip address computer name
    HO 192.168.0.29 maindb
    processing 192.168.1.92 procdb
    stitching 192.168.1.92 stichdb
    Please guide how i can configure and user hosts file in windows\system32\drivers\etc\hosts
    Thanks in advance

    Thanks
    i have three server with same subnet mask. save os and db versiong windows server 2003 and 10g on all servers.
    server-1
    ip address : 192.168.0.29
    ubnet mask : 255.255.254.0
    computer name : maindb
    server-2
    ip address : 192.168.0.92
    ubnet mask : 255.255.254.0
    computer name : procdb
    server-3
    ip address : 192.168.0.93
    ubnet mask : 255.255.254.0
    computer name : stitchdb
    Please guide me how i can configure system32\dirvers\etc\hosts file.
    Thanks in advance.

  • Installing 10g R2 on WinXP SP2 NL gives ORA-19870, ORA-19612, ORA-06512...

    I'm trying to install version 10g R2 on the following configuration:
    ASUS K8V SE board + AMD 64 Athlon + 512Mb Ram + 160GB SATA HD + 18GB IDE HD Windows XP SP2 NL
    When I install 10g without creating the db then it installs without problem.
    If I try to create the db (afterwards or during install) I get the following errors:
    (Translated from Dutch to English)
    ORA-19870: Error by reading backup part C:\ORACLE\DB10G2\ASSISTANTS\DBCA\TEMPLATES\SEED_DATABASE.DFB
    ORA-19612: Data file 3 is not fixed because of missing or corrupt data.
    ORA-06512: IN "SYS.X$DBMS_BACKUP_RESTORE", line 5149
    ORA-06512: IN LINE 16
    I get the option to ( Ignore ) or ( Abort )
    Ignoring brings other simular problem and at the end I dont have a database.
    The files are on the HD and are readable, even installed from a second download gives the same errors.
    I have tryed several things even disable BitDefender 9 internet security but nothing helps.
    Can someone give me some hints ?
    Thanks in advance

    Hi damorgan,
    Thank for your reply. I try what you say at the first time but it's failed because of missing file. If it is successfully installed for you, I will try it.
    For me I ignore the database config process and end installation. After that I create successfully my database by orace configuration and migration tools > database config.
    Regards.
    Edited by: dialaya on 27 avr. 2010 14:58

  • Installing 10g R2 on 32-bit Windows Server 2008 (not R2!)

    I want to install 10g R2 on Windows Server 2008 32-bit OS.
    It looks like 10.2.0.4 is the current release that supports Server 2008, however it doesn't seem to be available as an installation option.
    The download page says to download 10.2.0.3 and then use the patchset 10.2.0.4 from Oracle MySupport.
    Doesn't the patchset have to be installed over a current installation? How do I get an installation on my OS, if 10.2.0.3 will not install on it? Or will it?

    CKPT wrote:
    I want to install 10g R2 on Windows Server 2008 32-bit OS.
    It looks like 10.2.0.4 is the current release that supports Server 2008, however it doesn't seem to be available as an installation option.
    The download page says to download 10.2.0.3 and then use the patchset 10.2.0.4 from Oracle MySupport.
    Doesn't the patchset have to be installed over a current installation? How do I get an installation on my OS, if 10.2.0.3 will not install on it? Or will it?What is your current BASE patchset? You can upgrade from 10.2.0.1 to 10.2.0.4 directly.BASE patchset? Not sure what you mean. This is a new install.
    Are you implying that install 10.2.0.1 first is the way t go. Not sure if that will install on Server 2008.
    I can't fiddle with the product prereqs xml to make it install. We will be instructing the customer on the installation and they will not want to do that.

  • Installing 10g on Windows XP machine JVM launcher "Can't find main class"

    I am trying to install 10g Release 2 on a Windows XP machine. I downloaded the zip from the OTN. Unzipped the file. No problems. Tried to run the OUI, it opened up a shell and said to wait. The shell closed and a message frome the JVM Launcher displayed "Can't find main class. Program will exit." I have seen several people on this and other discussion boards having this problem, but have yet to get a solution. Please help.

    What's the value of CLASSPATH environment variable? Possibly a non-oracle application has set this variable and the installer catches it. If there is such a variable, comment it out and try again.

  • Installing 10g client on windows7 64 bit. ( 11g r2 already installed)

    I am a fiscal auditor auditing data on databases with hundreds of millions rows. So not a professional database expert.
    I have Oracle 11.2.0.1.0 installed on Windows 7 64 bit ultimate
    I want to import data from warehouse which has Oracle 10.2.0.4.0 installed.
    When I try to import
    impdp usr/pass@WAREHOUSE TABLES=TABLE DIRECTORY=DATA_PUMP_DIR NETWORK_LINK=D_W VERSION=10.2
    It gives :
    UDI-00018: Data Pump client is incompatible with database version 10.2.0.4.0
    To overcome version incompatibility, I think I need to install 10g client on my computer.
    But I already have 11gr2 database installed, so I wanted to learn about potential problems.
    Especially about having two Oracle Homes, tnsnames.ora files, which 10g client version, etc..
    Step by step explanation is highly appreciated.
    Thanks.

    orafad wrote:
    Are you connected to the target or source database with impdp? Db link for source db to be used in NETWORK_LINK argument, in which database does it exist?
    Again, show impdp command session (copy-paste)
    orafad thanks, I understand my mistake but I encountered a new one.
    I was using source username/pass for impdp, it was wrong I should use target username.
    Here is the result now:
    SQLPlus: Release 11.2.0.1.0 Production on Pzt Ara 26 13:52:58 2011*
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Enter user-name: target_usr
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    *> $*
    *Microsoft Windows [Sürüm 6.1.7600]*
    Telif Hakkı (c) 2009 Microsoft Corporation. Tüm hakları saklıdır.
    D:\app\direct\product\11.2.0\dbhome_1\BIN>impdp target_usr/target_pass network_link=ambar
    Import: Release 11.2.0.1.0 - Production on Pzt Ara 26 13:53:23 2011
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ORA-31631: privileges are required
    ORA-39149: cannot link privileged user to non-privileged user
    Source schema has the exp_full_database privilege, so I don't understand why this happens.
    select privilege from user_sys_privs minus select privilege from user_sys_privs@ambar;
         PRIVILEGE
    1     ALTER TABLESPACE
    2     CREATE TABLESPACE
    3     DROP TABLESPACE
    select privilege from user_sys_privs@ambar minus select privilege from user_sys_privs;
         PRIVILEGE
    1     CREATE ANY VIEW
    2     ENQUEUE ANY QUEUE
    3     EXECUTE ANY CLASS
    4     EXECUTE ANY EVALUATION CONTEXT
    5     EXECUTE ANY INDEXTYPE
    6     EXECUTE ANY LIBRARY
    7     EXECUTE ANY OPERATOR
    8     EXECUTE ANY PROCEDURE
    9     EXECUTE ANY PROGRAM
    10     EXECUTE ANY RULE
    11     EXECUTE ANY RULE SET
    12     EXECUTE ANY TYPE
    13     EXEMPT ACCESS POLICY
    14     EXEMPT IDENTITY POLICY
    15     EXPORT FULL DATABASE
    16     FLASHBACK ANY TABLE
    17     FORCE ANY TRANSACTION
    18     FORCE TRANSACTION
    19     SELECT ANY TABLE
    select granted_role from user_role_privs minus select granted_role from user_role_privs@ambar;
         GRANTED_ROLE
    1     IMP_FULL_DATABASE

Maybe you are looking for

  • Some built-in dictionaries not working after upgrading to iOS 8

    I've have just upgraded to iOS 8 on my iPad. After upgrading, I discovered that some of the built-in dictionaries that I have been using previously are not working. These are: German Japanese-English Simplified Chinese Simplified Chinese-English In t

  • Unable to export from Premier

    Repeat problem across many projects. Have to keep closing programme and reopening until it works. Anyone else experienced this?

  • Help with photos and music sync

    Hello, I recently bought Xperia Z Ultra and I wish to sync my music and some photos from computer (photos to build in memory and music to external SD card). I installed and updated Media Go (v. 2.7 build 341) and I though that will be easy like in ..

  • How to run exception using JSP?

    How to run exception using JSP?

  • Java proxy in PI7.1.....

    Hi All, I am having a requirement where i have to develop JAVA proxy in PI 7.1 and for this I am using NWDS 7.1 but the main concern is that i am very new to JAVA proxies. Even though i refer SDN but the blogs and forums mentioned are related to XI3.