Download/Install Oracle9i Entr/Stnd/PE

In the forum I have noticed several folks addressing the 1 or several
of the 3 downloaded files being corrupt from the Download of Oracle9i
Entr/Stnd/PE for NT/2000/XP.
I am not sure if my issue is a symptom of the same probably. I have
been able to download and unzip/extract the 3 files as directed on OTN.
Upon running the 2.2 Installer(setup.exe)after selecting a destination
path for Oracle Home, the install executes briefly and then gives me
an error. The gist of the message is "There are no top level components
for Windows ME available for installation in this staging area".
The staging source looks correct. The destination path looks fine.
Do I need to download Oracle9i for Windows98 possibly, since I am
working off of WindowsME? Or are there file issues involved?
- Date/Time : Nov. 14, 2002 : 1:00pm
- Browser + Version MicrosoftIE v5.5
- O/S + Version WindowsME
- Error Msg No top level components for WindowsME in staging area.
Any help would be greatly appreciated.
Brett

Similar Messages

  • How to download/install oracle9i online document

    Hi, I downloaded Oracle9i database and installed the database. But I can't install the online documentation into my machine. How can I download and install the online documentation?
    Thanks

    Hi cindy,
    you can download from otn.oracle.com/docs/products/oracle9i/content.html
    or can buy from oracle.store.com.
    Yogi
    [email protected]

  • Oracle9i database download - installing client only

    I have downloaded Oracle 9i personal edition database for windows2000. When I installed, it installed the Oracle9i client not the database.
    Can you provide the info how can i download & install the oracle 9i database personal edition?
    Regards,
    Nausad

    Thanks for pointing this text error out to us, however, the pages will take you to the database downloads.
    Regards,
    OTN

  • Install oracle9i(9.2.0.4) on Fedora Core3

    Install Oracle9i(9.2.0.4) on Fedora Core 3
    I. Prepare the files
    1. Download ship_9204_linux_disk1.cpio.gz, ship_9204_linux_disk2.cpio.gz ship_9204_linux_disk3.cpio.gz from www.oracle.com to your local disks.Unzip them all.
    gunzip ship_9204_linux_disk1.cpio.gz
    gunzip ship_9204_linux_disk2.cpio.gz
    gunzip ship_9204_linux_disk3.cpio.gz
    cpio -idmv < ship_9204_linux_disk1.cpio
    cpio -idmv < ship_9204_linux_disk2.cpio
    cpio -idmv < ship_9204_linux_disk3.cpio
    there will be three new sub-directories named Disk1,Disk2,Disk3 in the directory.
    2. Copy compat-gcc-7.3-2.96.128.i386.rpm, compat-gcc-c++-7.3-2.96.128.i386.rpm, compat-libstdc++-7.3-2.96.128.i386.rpm, compat-libstdc++-devel-7.3-2.96.128.i386.rpm from Red Hat EL AS3 installation CDs to a temporary directory.
    3. Make a script file named rhel3_pre_install.sh with the following content:
    #!/bin/bash
    USER=`whoami`
    if [ $USER != root ]; then
    echo "Must be root to run this script, please login as root and re-try"
    exit
    fi
    # see if libcwait.so is already being loaded
    if [ -f "/etc/ld.so.preload" ] && [ -n "`grep libcwait /etc/ld.so.preload`" ]; then
    echo "Patch has already been applied"
    exit
    else
    echo "Applying patch..."
    fi
    cat << EOF |
    #include <errno.h>
    #include <sys/syscall.h>
    #include <sys/types.h>
    #include <sys/wait.h>
    pid_t
    __libc_wait (int *status)
    int res;
    asm volatile ("pushl %%ebx\n\t"
    "movl %2, %%ebx\n\t"
    "movl %1, %%eax\n\t"
    "int \$0x80\n\t"
    "popl %%ebx"
    : "=a" (res)
    : "i" (__NR_wait4), "0" (WAIT_ANY), "c" (status), "d" (0), "S" (0));
    return res;
    EOF
    gcc -O2 -shared -fpic -xc - -o /etc/libcwait.so
    echo "/etc/libcwait.so" >>/etc/ld.so.preload
    echo "Patch successfully applied"
    Change the file property to executable. Open a terminal, do it as ‘root’ user.
    sh rhel3_pre_install.sh
    II. Prepare the system
    1. Check if the following rpms have been installed.
    rpm –qa | grep compat-db
    rpm –qa | grep openmotif
    rpm –qa | grep setarch
    make sure they are installed exactly.
    2. Install the four rpms copy out from RHEL AS3.Do the following command in the directory which contains them.
    rpm –Uvh com*rpm --force
    check them by rpm –qa | grep compat
    make sure they are installed exactly.
    3. Change the gcc to oracle required
    mv /usr/bin/gcc /usr/bin/gcc34
    mv /usr/bin/g++ /usr/bin/g++34
    ln -s /usr/bin/gcc296 /usr/bin/gcc
    ln -s /usr/bin/g++296 /usr/bin/g++
    4. Modify /etc/sysctl.conf, add the following content:
    kernel.shmmax = 536870912
    kernel.shmmni = 4096
    kernel.shmall = 2097152
    kernel.sem = 250 32000 100 128
    fs.file-max = 65536
    net.ipv4.ip_local_port_range = 1024 65000
    If you have more then 2G ram, you can set kernel.shmmax = 2147483648
    5. Modify /etc/security/limits.conf, add the following content:
         oracle    soft    nofile    65536
         oracle    hard    nofile   65536
         oracle    soft    nproc    16384
         oracle    hard    nproc    16384
    then, restart the computer.
    III. Prepare the user and the directories
    1. Add user and groups
    groupadd oinstall
    groupadd dba
    useradd -g oinstall -G dba oracle
    passwd oracle
    2. Make directories
    mkdir -p /opt/ora9/product/9.2
    mkdir /var/opt/oracle
    chown oracle.dba /var/opt/oracle
    chown -R oracle.oinstall /opt/ora9
    chmod 755 /var/opt/oracle
    3. Change X unlimited to anyone
    xhost +
    4. set the ‘root’ user’s environment
    export ORACLE_BASE=/opt/ora9
    export ORACLE_HOME=/opt/ora9/product/9.2
    5. open a new terminal
    su – oracle
    modify the .bashrc, add the following content:
    #oracle 9i
    export ORACLE_BASE=/opt/ora9
    export ORACLE_HOME=/opt/ora9/product/9.2
    export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/Apache/Apache/bin:$PATH
    export ORACLE_OWNER=oracle
    export ORACLE_SID=ora9
    export ORACLE_TERM=vt100
    export LD_ASSUME_KERNEL=2.4.1
    export THREADS_FLAG=native
    export LD_LIBRARY_PATH=/opt/ora9/product/9.2/lib:$LD_LIBRARY_PATH
    # change this NLS settings to suit your country:
    # example:
    # german_germany.we8iso8859p15, american_america.we8iso8859p2 etc.
    export LANG=en_US
    export LC=en_US
    then refresh the environment: source .bashrc
    check if them take effect. set | more
    6.logout and relogin as ‘oracle’.
    IV. Finish the installation.
    Change the current directory to which you download the oracle9i installation files.
    ./Disk1/runInstaller
    Good luck!
    ======================================================
    any question,u can contact me.my MSN: [email protected]
    u can also down the 'MS word' format file by http://52asp.kmip.net/Install Oracle9i.doc

    OK thank you very much Ivan
    You cookbook was very useful because i encountered exactly errors that you mentionned.
    Thanks !!

  • Install Oracle9i on W2k : areasQueries component could not be installed

    I successfully downloaded the "Oracle9i Database Release 2 Enterprise/Standard/Personal Edition for Windows NT/2000/XP", and unzip the three zip file to directory disk1,disk2, and disk3. I run setup.exe on Windows2000 server(sp2), but universal installer told me the areasQueries(generalQueries,SIDQueries etc) component could not be installed, and the installation could not go on successfully. Could anybody help me?

    Your install resource path has chinese filefolder.Change it then ok!

  • Error installing Oracle9.2.0 on RedHat Enterprise3

    Hi,
    I tried to install Oracle9.2.0 on Linux RedHat Enterprise3, when run ./runInstaller the oracle gui installer not completed it just stop at 0% progress and when look logs file at /oracle/oraInventory/logs/ it content:
    Java.lang.UnsatisfiedFieldError: /tmp/oraInstall2004-06-07_09-12-29PM /libactionUnix22.so : /tmp/oraInstall2004-06-07_09-12-29Pm/libactionunix22.so:symbol errno, version Glibc_2.0 not defined in file libc.so.6 with link time reference
    at java.lang.classloader$nativelibrary.load (native method)
    at java.lang.classloader.loadlibrary0 (classloader.java:1419)
    at java.lang.classloader.loadlibrary (classloader.java:1314)
    at java.long.Runtime.load0 (Runtime.java:698)
    at java.long.System.load (System.java:797)
    at ssoiGenClassUx22.<clinit> (ssoiGenClassUx22.java:25)
    at sscreatelinkux.createlink (sscreatelinkux.java:255)
    at sscreatelinkux.installAction (sscreatelinkux.java:83)
    at oracle.sysman.oii.oiis.oiiscompactions.doActionWithException (oiisCompActions.java:1357)
    at oracle.sysman.oii.oiis.oiiscompactions.doActionImpl (oiisCompActions.java:1157)
    at oracle.sysman.oii.oiis.oiiscompactions.doAction (oiisCompActions.java:604)
    at CompActions.doActionP1createLink3 (compActions.java:310)
    at CompActions.StateChangeActions (compActions.java:106)
    at oracle.sysman.oii.oiic.oiicInstallActionsPhase$oiilActionThr.run (oiicInstallActionPhase.java:604)
    at oracle.sysman.oii.oiic.oiicInstallActionsPhase.executeProductPhases (oiicInstallActionPhase.java:2199)
    at oracle.sysman.oii.oiic.oiicInstallActionsPhase.doInstalls (oiicInstallActionPhase.java:2052)
    at oracle.sysman.oii.oiic.oiicInstallActionsPhase$oiInstRun.run (oiicInstallActionPhase.java:2945)
    at java.lang.Thread.run (Thread.java:484)
    hope someone can give clue what should i do and check.
    Thanks and Regards,
    Ed

    hi Ed,
    your log clearly states that there is some problem with your glibc kernel, and there are some relinking issues also.
    I suggest you to download the glibc and extract that tar file , which produces one shell script , run it and mostly your problem gets solved. By the way dont forget to copy the relink file in $ORACLE_HOME/bin.
    get back after your attempt
    regards
    srinivas

  • Install Oracle9i RAC using virtual machine 2004

    Hi all,
    Can anybody guide me to install Oracle9i RAC using virtual machine 2004 for windows 2000 or red hat linux 9/enterprise 4. I got intel 865 GBF p4-2.8GHZ with 1GB ram and 80GB HDD...
    Thankz.....

    Check Here:
    http://download-uk.oracle.com/docs/html/A95493_01/toc.htm
    http://download-uk.oracle.com/docs/html/A96167_01/toc.htm

  • When installing Oracle9i I run into a problem on the 3rd CD

    I am installing Oracle9i and on the third CD I am running into a problem. When the Configuration Tools are downloading, I am not able to download the "Oracle Database Configuration Assistant." It says that the SID I have created (during installation of the first CD) is already in use. How do I go about changing the SID I picked???? Does anyone know???

    Bert Gildart
    I was unaware that you could establish any direct linkage between Lightroom and Premiere Elements. Are you sure that the association was to be for  Photoshop CS3 and Lightroom?
    Have you tried to do a System Restore to a point before you installed Premiere Elements 13 or before you OK'd whatever this Lightroom linkage was?
    Have you asked your question in the Adobe Lightroom Forum, asking about recovery of work lost from Lightroom? Have you found any traces of your lost Lightroom work in the Recycle Bin?
    ATR

  • Why i cant install oracle9i

    I try to install oracle9i on Windows 2000 server .My computer is a P4 PC.but installation program returned not told me why and any error message.Who can help me ?thank you!

    Hello,
    Me too a have this probleme, but i have find that any platform that uses the Intel Pentium 4 processor, with Sun JRE and Symantec JIT will encounter this probleme. Windows NT, 2000 and NetWare operating systems are confirmed to be affected.
    This a find it on the site web of oracle use this link :
    http://metalink.oracle.com
    you will find a file to download (like patch), you should download this file and the insructions to follow.
    Hope this informations help you.
    Good chance

  • After downloading & installing application of adobe creative suite cs2 version 6,  screen of adobe photoshop cs2 is not opened by clicking icon . message is giving " ausba4.dll " was not present. Please guide me.?

    I have downloaded & installed adobe creative suit cs2 version 6 but when I click the icon of adobe photoshop in desktop it is not opened & giving message " this application has failed to start because " ausba4.dll " was not found. reinstalling of the application may fix the problem " I have reinstall & opened many times but even then it is not opened. Please guide me accordingly.

    I'd try disabling the Twain_32.8BA plugin in
    C:\Program Files\Adobe\Adobe Photoshop CS2\Plug-Ins\Import-Export
    You can disable the plugin by putting an ~ (tilde) in front of the name or moving the plugin to your desktop.
    Then try photoshop cs2 and see if you still get the error message.
    I suspect the error has to do with your scanner driver, since photoshop cs2 does not have an ausba4.dll

  • Error on Install Oracle9i R2 on RedHat Linux 7.3

    When I have installed Oracle9i R2 on RedHat Linux 7.3,I reboot the machine,
    and then write this:
    sqlplus
    SQL> sys /change_on_install as sysdba
    SQL>Connect to Iddle
    SQL>startup
    SQL>sltln:environment variable cannot be evaluated
    What`s the matter?
    thanks

    Looks like some file that's present in tmp or
    /var/tmp during deployment cannot be overwritten
    because of permissions issue. Please make
    sure you don't have previous installation temp files
    in /var/tmp or /tmp before doing new installation or
    use the same use that installed the first instance.
    You can try cleaning up tmp and /var/tmp and retry.
    Also try setting umask 00 before installations.

  • Problems to install Oracle9i on Linux RH 7.1

    Error message appeared during installation process.
    "Error in involing target install of makefile
    /disk01/app/oracle/products/9.0.1/plsql/lib/ins_plsql.mk"
    Does anybody know what to do?

    Try the instruction on this URL
    http://www.e-gineer.com/instructions/install-oracle9i-on-
    linux.phtml
    The problem may be coming from the binutils verson imcompatible.

  • Error in writing to directory when installing Oracle9i

    Hi, i am installing Oracle9i 64bit on a 64bit processor and when i run the installer and i get the following error:
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0, asianux-1 or asianux-2
    Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2006-12-07_02-38-41PM. Please wait ...
    Error in writing to directory /tmp/OraInstall2006-12-07_02-38-41PM. Please ensure that this directory is writable and has atleast 60 MB of disk space. Installation cannot continue.
    : Success
    I have checked the tmp directory and it has enough space and the directory is drwxrwxrwx
    thanks

    Check similiar discussion in Problem installing Oracle HTTP Server on Red Hat Enterprise Linux4 for APEX

  • Installing Oracle9i on Windows XP Pro

    Hi,
    I've just installed Oracle9i Server on Windows XP, the Database is installed probarly & is working fine, but the Enterprise Manager Console window is right aligned. Everything in it, the File Menu is starting from the right side, the vertical bar is on the right side, the Databases tree is also right aligned on the window.
    I beleive that I have to change some value in the Windows Registry, but I don't know which one, if any one can please help me and tell me which value I should change or add to the registry.
    Please reply
    Thank you

    I just checked this again, at work, on my 2000 machine. I changed my locale to saudia arabia and that resulted in the alignment you mentioned earlier. I switched it back to its default english - united states and the alignment is no loner at the right.
    In addition to that my nls_lang setting is :
    AMERICAN_AMERICA.WE8MSWIN1252
    Note though, that simply changing the locale did it for me, regardless of my nls_lang setting.

  • I updated to Yosemite on my Mac. Firefox then began to freeze. I uninstalled Firefox and then downloaded/installed it again. How do I recover bookmarks, etc?

    I updated to Yosemite on my iMac. Firefox then began to freeze. I uninstalled Firefox and then downloaded/installed it again. It's possible I uninstalled everything Mozilla related. I'm not sure. How do I recover bookmarks, passwords, etc? I don't believe I previously had a username & password for Mozilla. I do have my Mac backed up in Time machine and also a Carbon Copy Clone.
    Also, I was able to migrate setting from Safari. Perhaps I don't want some of that stuff? Looking at the list of installed plugins, I have no clue if they're standard Apple/Mozilla stuff, or if they were selected by me/my family earlier in Safari? Are any of them a threat to my online security?
    Any detailed instruction would be most appreciated. I'm not much of a tech guy.
    Thanks.

    See:
    *https://support.mozilla.org/kb/Recovering+important+data+from+an+old+profile
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    You will have to find your previously used profile folder in the Time machine or other backup and restore the wanted files to the current profile folder.
    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show in Finder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    */Users/&lt;user&gt;/Library/Application Support/Firefox/Profiles/&lt;profile&gt;/

Maybe you are looking for

  • After updating to iOS 8 all of my files in Pages are gone!!!! Where are they? And how do I get them back?

    After updating my iPad to iOS 8 all my files in Pages and Numbers are gone!!! Where are they and how do I get them back?

  • Problem with ok button

    hi,   im using an ok button to generate some events and i change its boolean text dynamically. What happens is the size of the button changes in accordance with the boolean text. How do i have a fixed size for the button and change the boolean text a

  • Date added missing for itunes 12.

    In previous version of iTunes there was a column header option for audiobooks called date added. (when book was added to iTunes). I use the header to sort in reverse order so I get most recently added books at top of list.  This option seems to be mi

  • Error in Startup database

    Hi Guru's, How are u? After a long time Im coming Back to Oracle Forum I have some problem in my server Os Version : Windows NT 4.o database Version : 8.1.6 Please give me any solution for the following log file...report is not Connecting now... Sun

  • A saved word document will not show up on desktop

    Aloha: I am having problems getting a saved document to appear on my desktop.What might I be doing wrong. This has never happened before.  What might I be doing differently, now, to cause this to happen? Thanks Dan