Need Oracle 10.2.0.1.0 Linux software

I would like to down load Oracle 10.2.0.1.0 Linux software. Where would it be available?

plz donot post duplicate close this one https://forums.oracle.com/thread/2563999

Similar Messages

  • Need Oracle 9i client for RedHat Enterprise Linux AS 4.0 machine

    I need to install Oracle 9i client on my RHEL AS 4.0 machine (running Intel xeon 64 bits processor). Could some one please point me to correct installable for this.
    I tried to use both the Oracle9i Release 2 (9.2.0.4) installables at http://www.oracle.com/technology/software/products/oracle9i/index.html
    But both of them are giving error. For Linux x86-64 installable, the Universal Installer is not able to launch because the installer seems to be for AMD processor. And for second installable (32 bit installable), I get a JRE related error saying that a java library file (some *.so file) could not be located.
    Please guide me on the same...
    Thanks a lot,
    Anuj Tiwari

    According this info you should install x86_64 version.
    In your first post you mentioned some errors during installtion. Can you post exact error message?

  • What do I need to open a connection from the Linux box to the Oracle server

    Hi all,
    I want to access oracle database from java application running on Linux.
    The database is installed on a Window 2000 machine. What do I need to install before I can open a connection from the Linux box to the Oracle server on Windows 2000 ?
    Do I need Oracle Client ?
    Thanks,
    Quoi

    Hi Quoi,
    http://myjdbc.tripod.com/basic/jdbcurl.html
    Talks abt how to write a jdbc url and the jar + config required to connect to db. Also has a sample program to connect.
    Regards
    Elango.

  • Install Oracle 11gR2 Express Edition on Ubuntu Linux 11.04 (64-bit) Howto

    h2. Install Oracle 11gR2 Express Edition on Ubuntu Linux 11.04 (64-bit) Howto
    Version: B
    Author: Dude, 24. May 2011
    The following are step by step instructions how to install Oracle 11gR2 Express Edition (Beta) under Linux Ubuntu 11.04, 64-bit.
    Access to the Internet is required.
    The instructions cover the following additional topics:
    - Converting Red Hat based Oracle XE installer to Ubuntu.
    - Work-around for missing /sbin/chkconfig tool.
    - Install Oracle XE into a different directory or disk volume.
    - Relocate and configure the Oracle user and default login directory.
    - Uninstall, reconfigure and perform first database backup.
    - Notes and web links.
    - Troubleshooting
    h3. A) System Setup and Prerequisites
    h4. A.1. System Access
    You will need terminal command line, root and system console access to perform the setup tasks.
    To open a Terminal at the system console:
    Menu Applications > Accessories > TerminalThe following commands will enable remote ssh login with root access:
    sudo apt-get install openssh-server
    sudo passwd root
    Verify:
    ssh root@xe_server_host_nameh4. A.2. Software Prerequisites
    The following is required in order to install Oracle 11gR2 XE:
    sudo apt-get install alien libaio1 unixodbcThe following is not required, but it will fix backspace and arrow keys in case you prefer using the vi-editor:
    sudo apt-get install vimh4. A.3. System Swap space
    Minimum swap space required is 2 GB. You can increase swap space if necessary using a swap file:
    To analyze current swap space and memory configuration:
    sudo cat /proc/meminfo
    To install a 1 GB swapfile named swapfile in /, for example:
    sudo dd if=/dev/zero of=/swapfile bs=1024 count=1048576
    (this may take a while)
    sudo mkswap /swapfile
    sudo swapon /swapfile
    sudo cp /etc/fstab /etc/fstab.orig
    sudo echo '/swapfile swap swap defaults 0 0' >> /etc/fstab
    Verify:
    sudo swapon -a
    sudo swapon -sh4. A.4. Kernel Parameters
    Oracle 11g XE requires the following additional kernel parameters:
    sudo nano /etc/sysctl.d/60-oracle.conf
    (Enter the following)
    # Oracle 11g XE kernel parameters
    fs.file-max=6815744
    net.ipv4.ip_local_port_range=9000 65000
    kernel.sem=250 32000 100 128
    kernel.shmmax=536870912
    (Save the file)
    Note: kernel.shmmax = max possible value, e.g. size of physical RAM.
    Verify: sudo cat /etc/sysctl.d/60-oracle.conf
    Load new kernel parameters:
    sudo service procps start
    Verify:
    sudo sysctl -q fs.file-max
    -> fs.file-max = 6815744h4. A.5. Oracle Installation Directory
    The current Oracle Installation Guide uses the same directory like in previous versions: /usr/lib/oracle/xe/app/oracle/product/11.2.0/server. However, the current Beta installation uses Oracle Flexible Architecture (OFA) and installs into /u01/app/oracle/product/11.2.0/xe. Due to size limitations of Oracle XE it may not be necessary to store the installation to a specific directory or separate volume, but it is possible:
    Install Oracle XE to separate disk volume:
    From the system console menu: System > Administration > Disk Utility
    Select "ext3" filesystem for Oracle compatibility and specify a Volume label, e.g. Oracle.
    Notice the device name e.g. /dev/sdb
    Get the drive UUID:
    sudo blkid
    e.g. /dev/sdb: UUID="d19a2d8f-da43-4802-8bdb-0703c855e23a"
    Modify /etc/fstab to automatically mount the volume at system startup:
    sudo cp /etc/fstab /etc/fstab.original
    sudo nano /etc/fstab
    (Add the following, using determined UUID, for exmple)
    UUID=d19a2d8f-da43-4802-8bdb-0703c855e23a /u01 ext3 defaults,errors=remount-ro 0 1
    (Save the file)
    Create the mount-point, mount the new volume and set ownership and privileges:
    sudo mkdir /u01
    sudo mount -a
    sudo chown root:root /u01
    sudo chmod 755 /u01
    Verify:
    df -h
    or restart the systemYou can also install Oracle XE into a specific directory:
    Create a symbolic link to store the installation into an existing directory, for instance:
    sudo mkdir /home/oracle-xe
    sudo ln -s /home/oracle-xe /u01h3. C) Oracle 11g XE Download and Installation
    h4. C.1. Download and convert the Installer from Red Hat to Ubuntu
    Please see section E.3. to download the Oracle 11gR2 XE installer.
    Select the version listed for Linux x64.
    sudo unzip linux.x64_11gR2_OracleXE.zip
    sudo alien --to-deb --scripts oracle-xe-11.2.0-0.5.x86_64.rpm
    (This may take a while)h4. C.2. Create a special chkconfig script
    The Red Hat based installer of Oracle XE 11gR2 beta relies on +/sbin/chkconfig+, which is not used in Ubuntu. The chkconfig package available for the current version of Ubuntu produces errors and my not be safe to use. Below is a simple trick to get around the problem and install Oracle XE successfully:
    Create /sbin/chconfig:
    sudo nano /sbin/chkconfig
    (Cut and paste the following)
    #!/bin/bash
    # Oracle 11gR2 XE installer chkconfig hack for Debian by Dude
    file=/etc/init.d/oracle-xe
    if [[ ! `tail -n1 $file | grep INIT` ]]; then
       echo >> $file
       echo '### BEGIN INIT INFO' >> $file
       echo '# Provides:             OracleXE' >> $file
       echo '# Required-Start:       $remote_fs $syslog' >> $file
       echo '# Required-Stop:        $remote_fs $syslog' >> $file
       echo '# Default-Start:        2 3 4 5' >> $file
       echo '# Default-Stop:         0 1 6' >> $file
       echo '# Short-Description:    Oracle 11g Express Edition' >> $file
       echo '### END INIT INFO' >> $file
    fi
    update-rc.d oracle-xe defaults 80 01
    (Save the file)
    Set appropriate execute privileges:
    chmod 755 /sbin/chkconfig
    Note: You should remove the /sbin/chkconfig file after successful installation of Oracle XE.
    h4. C.3. Install and configure Oracle XE
    sudo dpkg --install ./oracle-xe_11.2.0-1.5_amd64.deb
    /etc/init.d/oracle-xe configure
    (This will take a while)
    Remove the /sbin/chkconfig script, which is no longer needed.
    sudo rm /sbin/chkconfigh4. C.4. Relocate and Configure the Oracle user login
    The Oracle XE installer specifies /u01/app/oracle as the login directory for the Oracle user. Although not really necessary, the following will relocate the Oracle user $HOME to a standard location and create standard /etc/skel login files:
    Exit all Oracle user sessions:
    sudo /etc/init.d/oracle-xe stop
    sudo kill -9 `ps -ef | grep oracle | grep -v grep | awk '{print $2}'`
    sudo userdel oracle
    sudo useradd -s /bin/bash -G dba -g dba -m oracle
    sudo passwd oracle
    Verify:
    sudo id oracle
    -> uid=1001(oracle) gid=1001(dba) groups=1001(dba)h4. C.5. Setup Oracle environment variables
    In order to use sqlplus and other tools, the Oracle account requires certain environment variables. The following will set these variables automatically at every interactive Oracle login:
    sudo echo '. /u01/app/oracle/product/11.2.0/xe/bin/oracle_env.sh' >> /home/oracle/.bashrch4. C.6. Oracle sudo root access
    It is not essential to allow the Oracle user to use sudo, but it is convenient:
    usermod -G admin oracle
    Verify:
    id oracle
    -> uid=1001(oracle) gid=1001(dba) groups=1001(dba),120(admin)
    sudo su -
    -> Enter Oracle account passwordh4. C.7. Oracle 11g XE Post-installation
    After you install Oracle Database XE, its graphical user interface is only available from the local server, but not remotely.
    The following will correct the problem if necessary:
    Login as user Oracle or use:
    su - oracle
    sqlplus / as sysdba
    At the SQL prompt, enter the following command:
    EXEC DBMS_XDB.SETLISTENERLOCALACCESS(FALSE);
    exith3. D) Unintstall, Reconfigure and Troubleshooting
    h4. D.1. Uninstall Oracle 11g XE
    The following will completely uninstall and remove Oracle 11g XE:
    Login as user root:
    sudo su -
    /etc/init.d/oracle-xe stop
    dpkg --purge oracle-xe
    rm -r /u01/app
    rm /etc/default/oracle-xe
    update-rc.d -f oracle-xe removeh4. D.2. Reconfigure Oracle 11g XE
    Type the following in a terminal window:
    /etc/init.d/oracle-xe stop
    sudo rm /etc/default/oracle-xe
    /etc/init.d/oracle-xe configureh4. D.3. Enable Archivelog mode and perform a database backup
    Login as user Oracle:
    su - oracle
    sqlplus / as sysdba
    At the SQL prompt, enter the following commands:
    shutdown immediate
    startup mount
    alter database archivelog;
    alter database open;
    exit
    Login to system console of the Oracle user account:
    Select Applications > Oracle Database 11g Express Edition > Backup Databaseh3. E) Notes
    h4. E.1. Oracle 11g XE limitiations overview
    - It will consume, at most, processing resources equivalent to one CPU.
    - Only one installation of Oracle Database XE can be performed on a single computer.
    - The maximum amount of user data in an Oracle Database XE database cannot exceed 11 GB.
    - The maximum amount of RAM that Oracle XE uses cannot exceed 1 GB, even if more is available.
    - HTTPS is not supported natively with the HTTP listener built into Oracle Database XE.
    h4. E.2. Documentation and Links
    Official documentation for Oracle 11gR2 XE can be found at:
    http://www.oracle.com/pls/xe112/homepage
    h4. E.3. Oracle 11g XE downloads
    The Installer is available from the Oracle Technology Network at:
    http://www.oracle.com/technology/products/database/xe
    http://www.oracle.com/technetwork/database/express-edition/downloads/index.html
    h4. E.4 APEX links and archives
    The APEX archives can be found at:
    http://www.oracle.com/technetwork/developer-tools/apex/application-express/all-archives-099381.html
    The APEX download site is:
    http://www.oracle.com/technetwork/developer-tools/apex/downloads/index.html
    h3. F) Troubleshooting
    ... in progress
    Regards and best of luck!
    Edited by: Dude on May 25, Version B: various corrections. chkconfig package (A.2.) not required.

    even though I am admin user.Admin user is a MS Windows term, that does not apply to Linux or Unix in the same fashion.
    The configuration script tells you "You must be root user to run the configure script. Login as root user and
    then run the configure script."
    This is most likely correct because your account is not root and does not have UID 0. What you can do is to login as root e.g. sudo su -, as the message suggest, or use "sudo /etc/init.d/oracle-xe configure", provided your account is defined in the /etc/sudoers file to perform root/admin actions.
    Btw, do not modify /etc/passwd and /etc/group to give you admin privileges or try to create a another root account under a different name. That's not the way it works and usually leads to nasty problems.

  • ODBC connect to SQL Server 2005 from Oracle 10.2.0.3 32bit Linux

    I’m unable to establish a connection from Oracle 10.2.0.3 32bit Linux to SQL Server 2005.
    The ODBC driver is the 32bit DataDirect 5.3 drivers and when I do a status on the listener it does have a handler for SQLDB
    Any help is appreciated.
    Received the following error:
    SQL> select count(*) from columns@SQLDB;
    select count(*) from columns@SQLDB
    ERROR at line 1:
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [Generic Connectivity Using ODBC]DRV_InitTdp: DB_ODBC_INTERFACE (718): ; [C077]
    Could not find symbol 'SQLAllocConnect' in dynamic library
    DB_ODBC_INTERFACE (722): ; [C079] Failed to load dynamic library
    '/app/DataDirect/lib/libodbc.so'
    ORA-02063: preceding 3 lines from SQLDB
    -----Contents of trace file------------------
    Oracle Corporation --- THURSDAY JUL 10 2008 10:17:16.251
    Version 10.2.0.3.0
    hoagprd (2): ; hoagprd Entered.
    HOACONN.C (244): ; [Generic Connectivity Using ODBC] version: 4.8.2.0.0080
    HOACONN.C (288): ; Class version: 250
    hoagprd (2): ; hoagprd Exited with retcode = 0.
    hoainit (3): ; hoainit Entered.
    (0): ; connect string is: defTdpName=SQLDB;SYNTAX=(ORACLE8_HOA, BASED_ON=
    ORACLE8, IDENTIFIER_QUOTE_CHAR="", CASE_SENSITIVE=CASE_SENSITIVE_QUOTE);
    BINDING=<navobj><binding><datasources><datasource name='SQLDB' type='GENERIC_
    ODBC_FOR_HS' connect='SQLDB'><driverProperties/></datasource></datasources><
    remoteMachines/><environment><optimizer noFlattener='true'/><misc
    year2000Policy='-1' consumerApi='1' sessionBehavior='4'/><queryProcessor
    parserDepth='2000' tokenSize='1000' noInsertParameterization='true'
    noThreadedReadAhead='true' noCommandReuse='true'/><debug driverTrace='true'
    generalTrace='true'/></environment></binding></navobj>
    ORACLE GENERIC GATEWAY Log File Started at 2008-07-10T10:17:16
    hoainit (3): ; hoainit Exited with retcode = 0.
    hoalgon (7): ; hoalgon Entered. name = dbuser.
    sysbase.c (677): ; libodbcinst.so: cannot open shared object file: No such
    file or directory
    DB_ODBC_INTERFACE (718): ; [C077] Could not find symbol 'SQLAllocConnect' in
    dynamic library
    DB_ODBC_INTERFACE (722): ; [C079] Failed to load dynamic library '/app/
    DataDirect/lib/libodbc.so'
    DB_ODBC_INTERFACE (727): ; [C077] Could not find symbol 'SQLAllocConnect' in
    dynamic library
    DRV_InitTdp: DB_ODBC_INTERFACE (718): ; [C077] Could not find symbol '
    SQLAllocConnect' in dynamic library
    DB_ODBC_INTERFACE (722): ; [C079] Failed to load dynamic library '/app/
    DataDirect/lib/libodbc.so'
    nvRETURN (./drv_bind.c 230): -2220
    nvRETURN (./nav_bind.c 298): -2220
    hoalgon (7): ; hoalgon Exited with retcode = 28500.
    hoaexit (6): ; hoaexit Entered.
    hoaexit (6): ; hoaexit Exited with retcode = 0.
    (0): ; Closing log file at THU JUL 10 10:17:16 2008.
    --------------end of trace file ---------------
    --------TNS entry ----------
    SQLDB=
    (DESCRIPTION =
    (ADDRESS =(PROTOCOL = TCP)
    (Host = oracledbhost)
    (Port = 1521)
    (CONNECT_DATA = (SID =SQLDB)
    (HS=OK)
    -------Listener.ora entry----------
    (SID_DESC=
    (SID_NAME=SQLDB)
    (ORACLE_HOME=/app/oracle10g/product/10.2)
    (PROGRAM=hsodbc)
    -------initSQLDB.ora----------
    # This is a sample agent init file that contains the HS parameters that are
    # needed for an ODBC Agent.
    # HS init parameters
    HS_FDS_CONNECT_INFO = SQLDB
    HS_FDS_TRACE_LEVEL = 4
    HS_FDS_TRACE_FILE_NAME=/app/DataDirect/SQLDB.trc
    HS_FDS_SHAREABLE_NAME=/app/DataDirect/lib/libodbc.so
    # ODBC specific environment variables
    set ODBCINI=/app/DataDirect/odbc.ini
    ------odbc.ini entry------------
    [SQLDB]
    Driver=/app/DataDirect/lib/ivmsss23.so
    Description=DataDirect 5.2 SQL Server Wire Protocol
    Address=SQLServerhost,1401
    AlternateServers=
    AnsiNPW=Yes
    ConnectionRetryCount=0
    ConnectionRetryDelay=3
    Database=SQLServerDB
    LoadBalancing=0
    LogonID=
    Password=
    QuotedId=No
    SnapshotSerializable=0

    The error message is indicating problems loading the driver manager.
    A common issue on Linux (especially on Suse Linux) is related to library caching. First of all make sure you add the LD_LIBRARY_PATH to your listener.ora file to guarantee the correct libraries will be loaded. Your SID section will then look like:
    (SID_DESC=
    (SID_NAME=SQLDB)
    (ORACLE_HOME=/app/oracle10g/product/10.2)
    (ENVS=LD_LIBRARY_PATH=/app/oracle10g/product/10.2/lib:/app/DataDirect/lib)
    (PROGRAM=hsodbc)
    After changing the listener.ora file stop and start the listener.
    Details about the set up can be found in Metalink note:
    Note.264567.1 P216. How To Setup Generic Connectivity - HSODBC - on Linux
    If this does not help enable strace and check out from which location libodbc.so is being loaded.
    Please be also aware HSODBC has been desupported 15th of March. As you start a new project you should proceed with the follow up product DG4ODBC.

  • Where can I download Oracle 8.1.6 Client for Linux?

    I only found Oracle 8.1.6 Server for Linux on the download section of oracle.com, but I need the Client, to use with Cold Fusion Server 4.5.1 SP1 on my Linux box...
    Where can I get it?
    Thanks in advance.
    Marco Di Folco.
    [email protected]

    It is the same file, download it and when you run the installer it will ask you if you are installing th eclient or the server.
    Todd

  • Installation of Oracle 8.1.17 on Redhat Linux Enterprise Edition 2.4

    dear all
    I have tried to Oracle 8.1.17 on Redhat Linux Enterprise Edition 2.4 but it gives an error "Error in invoking target make file .."
    I tried using retries it failed each time to prorceed.
    I checked for my binutils ( binutils-2.14.90.0.4-26 ) but mine are higher than binutils-2.11.90.0.8-13.i386.rpm required ..
    do i need to down grade my binutils for 8.1.7
    abhi

    Hi Abhi!
    If I remember correctly (817 is stone age) the binutils used a strange debug flag in the 2.11.90.0.8-13 (something with -z).
    If this is not present in your newer version of the binutils the make will fail.
    Try downgrading the binutils during the installation.
    cu
    Andreas

  • I met problem when installing Oracle 8.1.6 on Turbo Linux 7.0

    I met problem when installing Oracle 8.1.6 on Turbo Linux 7.0.
    After setting up environment variables, and successfully
    accessed KDE interface, everything was going on well.
    The process of installation blocked at 80% in "Database Creation
    Process" dialog window.
    I have tried two times and got the same result.
    The error message is:
    Warning: Cannot convert string "-*-Kochi Gothic-medium-r-normal-
    *-*100...
    Help!

    I have done some oracle installations over RedHat 7.0 (not certificated):
    Let's check some things:
    1- You must have changed very few parameters on your shm.h sem.h files which are in /usr/include/linux directory.
    2- You need to upgrade the glibc and libstdc libraries (.rpm)
    3- You must have installed the jre116_v5 on /usr/jre and made a symbolic link like this
    ln -s /usr/jre/jre116_v5 /usr/local/jre
    4- You must include in the CLASSPATH parameter the jre116_v5 directory. It should look something like this
    CLASSPATH=/usr/jre/jre116_v5:$ORACLE_HOME/jlib
    5- Be sure to create and export all the parameters in your .bash_profile.
    6- Run the ./runInstaller.sh in a terminal window inside the Xwindow.
    You can find the jre116_v5 in www.backdown.org
    I hope these tips help you
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by xx:
    Hi every body
    when I run ./runInstaller from cdrom
    I get this messages :
    Initializing Java Virtual Machine from /usr/local/jre/bin/jre.Please wait ...
    Error in CreateOUIProcess ():-1
    : Bad Address
    I use JDK-1-1-6.
    Thx<HR></BLOCKQUOTE>
    null

  • 32 bit Oracle server installation on 64-bit Linux box

    Hi All,
    I would like to know if it is suggested to install 32 bit oracle software on a 64 bit Linux box.
    Details of our new DB box below:
    $ cat /etc/SuSE-release
    SUSE LINUX Enterprise Server 9 (x86_64)
    VERSION = 9
    PATCHLEVEL = 4
    $ free -m
    total used free shared buffers cached
    Mem: 48293 33114 15179 0 412 31496
    -/+ buffers/cache: 1205 47088
    Swap: 65535 0 65535
    $ grep -i name /proc/cpuinfo
    model name : Intel(R) Xeon(R) CPU X5355 @ 2.66GHz
    model name : Intel(R) Xeon(R) CPU X5355 @ 2.66GHz
    model name : Intel(R) Xeon(R) CPU X5355 @ 2.66GHz
    model name : Intel(R) Xeon(R) CPU X5355 @ 2.66GHz
    model name : Intel(R) Xeon(R) CPU X5355 @ 2.66GHz
    model name : Intel(R) Xeon(R) CPU X5355 @ 2.66GHz
    model name : Intel(R) Xeon(R) CPU X5355 @ 2.66GHz
    model name : Intel(R) Xeon(R) CPU X5355 @ 2.66GHz
    $ uname -a
    Linux stllin06 2.6.5-7.311-smp #1 SMP Mon Mar 10 13:12:16 UTC 2008 x86_64 x86_64 x86_64 GNU/Linux
    Oracle : Oracle server Enterprise Edition 9.2.0.8
    We need this setup to match the other two 32bit linux DB server boxes so that we can use DB cloning and Transportable Tablespace feautres between these three linux machines.
    Thanks in advance for your help.
    PS: I did raise a request to support and waiting for the update.
    Thanks,
    Krishna Bussu

    Thanks Girish. But all my findings says NO NO and NO.
    From http://www.oracle.com/technology/support/metalink/index.html
    Certify - Product Version and Other Selections: Oracle Database - Enterprise Edition On Linux x86-64 (AMD64/EM64T)
    General Notes For Oracle Database - Enterprise Edition On Linux x86-64 (AMD64/EM64T):
    Processor Chip Information:
    Linux x86-64, support on AMD64/EM64T and Intel Processor Chips that adhere to the x86-64 architecture with supported Linux releases.
    "Running Oracle 32-bit on AMD64/EM64T (64-bit OS) is not supported . "
    Oracle 32-bit running on AMD64/EM64T with a 32-bit OS is supported, refer to platform Linux x86 for more information on product availability.
    Note: As Ivan confirmed EM64T is mark for Intel 64 (x86-64) processors.
    Even the metalink Note: 182999.1 says...
    "A 32-bit application will work on both a 32-bit and 64-bit O/S, whereas a 64-bit application will only work on a 64-bit O/S."
    but the same articel says
    "Note: These statements do not necessarily apply to Oracle on Windows O/S's, Itanium or AMD64/EM64T based Platforms. See Certify for specific information."
    and then I got update from Support. Even they Say....
    "No it is not suggested that you run Oracle at 32 bits for a Linux X86_64 platform. This would not be a good idea"
    I guess I need to sit with my senior DBAs and SA tomorrow to find the path forward...
    Thanks all.
    Krishna Bussu.

  • Index Tuning Wizard - Oracle 9i 9.2.0.1 (Linux)

    Hello,
    I recently installed Oracle 9i Release 2 on a Linux box (RH 8.0). I have been able to get everything working without any problems. I was interested in trying out the Index Tuning Wizard but I can seem to track down where it is on my installation. I downloaded the images from technet (3 cds) and re-checked my installation for the Tuning Pack but I don't see the Index Tuning Wizard from the OEM Console running on the Management Server.
    Under Tools/Tuning pack it lists only three tools (Outline Managment, ReOrg Wizard,and Tablespace Map). Anyway, I am stumped. I could have swore I used it on 8.1.7 in the past using Oracle Expert... Has it been removed? or is only available as a separate product now?
    Thanks in advance.
    Eric

    Well this is how I did it -- 3 short scripts:
    1) called 'oracle' placed in /etc/init.d with links to the
    appropriate runlevel -- say K03oracle and S95oracle.
    This script was:
    #!/bin/bash
    export ORACLE_HOME=/home/oracle/OraHome
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib
    export ORACLE_SID=quaoar
    PATH=$ORACLE_HOME/bin:$PATH
    export PATH
    if [ "$1" = 'start' ]
    then
    # the value should be around half your available memory
    sysctl -w kernel.shmmax=192000000
    su - oracle -c startOracle
    fi
    if [ "$1" = 'stop' ]
    then
    su - oracle -c stopOracle
    fi
    I then place the two scripts 'startOracle' and 'stopOracle'
    so that they are found in the PATH (i.e. say /usr/local/bin).
    This is so they can be later used to start and stop the
    database manually if needed.
    The 'startOracle' script was:
    #!/bin/bash
    sqlplus /nolog <<-HERE
    connect / as sysdba
    startup
    quit
    HERE
    lsnrctl start
    And the 'stopOracle' script was:
    #!/bin/bash
    sqlplus /nolog <<-HERE
    connect / as sysdba
    shutdown
    quit
    HERE
    lsnrctl stop
    This seemed to work just fine.
    Oracle has 'enhanced' sqlplus to do some of the
    old 'svrmgrl' tasks. Use the /nolog switch and
    'connect / as sysdba' while logged in as the main
    (install) Oracle user. This is the same as the
    old 'connect internal'.
    Harold

  • Oracle 10g Installation on Red Hat Linux

    Hi
    I am trying to install Oracle 10g (Downloaded from Oracle Site) in a Linux Installation. I have checked with the following command about the Linux Version
    # cat /etc/issue and the output is :
    Red Hat Linux Release 7.1 (Seawolf)
    Kernel 2.4.2-2 on an i686
    Then I am giving #uname -r and the output is
    2.4.2-2
    Now Oracle Installation Guide for 10g for Linux is saying that
    if the errata level is less than 25 on x86 system then install latest Kernel Updates.
    Please Let me know from where I can get the Latest Kernel Updates appropriately and what I need to do to put that patch into Linux so that I can smoothly install the Oracle 10g.
    Thanks and regards.
    Keshav Tripathy

    Jer is absolutely right.... just changing the values in oraparm.ini to reflect your kernel distribution will work for you.
    For example the file contains:
    [Certified Versions]
    Linux=redhat-2.1,UnitedLinux-1.0,redhat-3
    now to add your linux into it just check your version by issuing the command #uname -r
    in my case the output was "2.4.20-8smp". I just appended redhat before this value and entered in the oraparm.ini file.
    The new ini file looks like:
    [Certified Versions]
    Linux=redhat-2.1,UnitedLinux-1.0,redhat-3,redhat-2.4.20-8smp
    [Linux-redhat-2.4.20-8smp-optional]
    TEMP_SPACE=80
    SWAP_SPACE=150
    MIN_DISPLAY_COLORS=256
    Now you are all set to install. I assume that all other pre-requisites have been fulfilled.
    Thanks & Regards,
    Rajesh Kumar
    Team Lead UNIX

  • Silent installation of oracle 10.2.0.5 on Linux 5

    Please anyone guide me for the steps of silent installation of oracle 10.2.0.5 on Linux 5. Please provide me the link if any.

    Hi;
    Please anyone guide me for the steps of silent installation of oracle 10.2.0.5 on Linux 5. Please provide me the link if any.You mention to install oracle 10.2.0.5 client or patch on Linux?(What is linux5? version,its 32 bit or 64 bit)
    If yes than its mean you are already on 10.2.0.x level. Because 10.2.0.5 is a patch check
    10.2.0.5 Patch Set - Availability and Known Is [ID 1087991.1 ]
    For installation you need to check readme part of patch
    If you mention client installation than check:
    10.2.0.5 client
    Re: Oracle 10g 10.2.0.5 Installation
    Regard
    Helios

  • Migration of Oracle Apps from HP-UX to Linux

    Hi Experts,
    We have plan to migrate the Oracle Application from HP-UX to Linux OS. Can you please suggest me the road map to be followed :
    requirement :
    Source : 11.5.10.2 + 10.2.0.4 (DB) : HP-UX
    Target need to be : 11.5.10.2 + 11.2.0.2 (DB ) RHEL 64-Bit
    Would be grateful , if you suggest the road-map. And suggest if the DB upgrade to be done in the beginning or after the migration.
    And also , please provide the note ids to be followed for each activity.

    Hi,
    At high-end you will have to break up your work into 02 level:
    1. Perform a platform migration from HP-UX to Linux
    2. Upgrade the Database to 11.2.0.3 from 10.2.0.4
    Note: I was aware your target database was 11.2.0.2, but since the latest update is 11.2.0.3  I recommend you do the same.
    1. Perform a platform migration from HP-UX to Linux
    HP and Linux share a different endian format, therefore you will have to proceed migrating your database via and export/import (you may not be able to use Transportable tablespace).
    Please refer following:
    https://blogs.oracle.com/stevenChan/entry/migrating_ebusiness_suite_databases_between_platfo
    Notes:
    Migrating to Linux with Oracle Applications Release 11i (Doc ID 238276.1)
    10g Export/Import Process for Oracle Applications Release 11i [ID 331221.1]
    10g Release 2 Export/Import Process for Oracle Applications Release 11i [ID 362205.1]
    2. Upgrade the Database to 11.2.0.3 from 10.2.0.4
    Please refer notes:
    Interoperability Notes Oracle EBS 11i with Oracle Database 11gR2 (11.2.0) (Doc ID 881505.1)
    Interoperability Notes EBS 11i with RDBMS 12cR1 (Doc ID 1524399.1)
    Note: 12c is also certified now with 11i, FYI.
    Thanks &
    Best Regards

  • I need  Oracle Apps DBA in Cali

    I need someone who is an Oracle App's DBA with RAC/Linux implementation experience for a f/t gig in California's central valley (between Fresno and Bakersfield) for a very nice and big family-owned company.
    The pay and benefits are super (LA/SF rates), but you must like rural settings!!
    If you are interested, shoot me an email.
    thanks,
    Dominik
    [email protected]
    Message was edited by:
    DominSF

    Hi Dominik,
    I am finding your offer interesting one.
    I am working as an APPS DBA in Oracle India Pvt Ltd for last 2 years.I work on latest technologies as you expected.
    If you find my experience relevant, I will send my CV to you.
    Please let me know about your opinion on this.
    Regards,
    Sandarsh.

  • 11gR2 - ACMCA needs Oracle grid infrastructure to configure ASM

    Hi
    I am installing single instance oracle 11gR2 on linux redhat 5
    I have problem with 11gr2 ASMCA.
    I successfully installed 11gR2 oracle grid home.
    Than i wanted to create the ASM diskgroup using asmca
    The disks was succssefully discavered , but the creatation failed on the following error messages:
    Oracle Grid infrastructure is not configured properly
    ACMCA needs Oracle grid infrastructure to configure ASMI think it maight be related to root.sh problem.
    1. where i can find the root.sh log output ?
    2. Is it "safe" to rerun the root.sh once again ?
    3. Could you please suggest what to check ?
    Thanks

    Hi There
    You need to run root.sh script once again as root user. The script can be found immediately under the GRID home
    for eg:/opt/11.2.0/grid/root.sh
    upon running this script it will then ask u to run another script for Standalone servers
    /opt/11.2.0/grid/perl/bin/perl -I/opt/11.2.0/grid/perl/lib -I/opt/11.2.0/grid/crs/install /opt/11.2.0/grid/crs/install/roothas.pl
    You need to run this again as root user
    This will configure the GRID infrastructure for a Standalone env.
    After this you should be able to run ASMCA without any issues
    Regards
    vgt

Maybe you are looking for

  • Hard Disk - Mac OS Boot Volume failure

    Hello everyone, My Mac does not boot. I started having odd problems of clicking on a document and the mac refusing to open its application (tried with PDF, DOCX, even JPG). When I rebooted I was  greeted with a a normal grey screen with apple logo an

  • J2EE or Oracle Portal

    hi folk, I'm gonna work on an J2EE application that deployed on Oracle Application server , It is a PORTAL APPLICATION , the problem is that i don't have experience with PORTAL applications , my question is should i begin with studying J2EE PORTAL OR

  • Internal table size - short dump

    Hi all, I am getting following error: 'Following a SELECT statement, the data read could not be placed in AN the output area.                                                      A conversion may have been intended that is not supported by the      s

  • Create Item Through OPM Item Master Error

    Hi, Error Message pop-up when trying to save item "OFTG_NO_PROFILE_VALUE". We are Oracle Applications 11.5.9, OPM Patch level J. Regards,

  • Change colors of entire row according to another

    Just to keep you guys busy: I have a crosstab layout and I want to change the color of the entire row according to one column, is that possible??