Trouble installing oracle 9i personal

Hi,
I am running a p3 processor on windows98 se.I was runnning
oracle9i personal edition till i had to format my machine.
When i was reinstalling oracle,my machine rebooted.so i couldnt install oracle in my next try.i deleted the oracle directory and cleaned the registry entries.Now the setup starts but doesnt proceed after i mention the destination directory.Can any1 plese tell me how i can install oracle again without reinstalling windows??
Thanks for all the help
regards,
Vinayak

Vista has some serious architecture differences that Oracle is working on. The current 9i.10g databases won't work. I got around the error you say, but then the installer just bombs out.

Similar Messages

  • How to install oracle in personal computer

    Dear Friends
    I would like to install oracle in personal computer, and I have the following oracle CD
    And I do not now which one I have to use .
    1) ORACLE9I REASE 1(9.0.1) for Microsoft windows NT/200 ( CD 1OF 3) , ( CD 2 OF 3),
    ( CD 3 OF 3)
    2) ORACLE9I APPLICATION SERVER release 1.02.2.2 for windows NT ALSO 3 DISKETS
    3) ORACLE8I CLIENT RELEASE 3 (8.1.7) FOR MICROSOFT WINDOWS 95/98/200/NT
    4) ORACLE8I STANDARD EDITION RELEASE 3 (8.1.7) FOR MICROSOFT WINDOWS NT/2000
    Which one of the above CD I have to use .
    And also I want to install in the same computer the form builder (32 – bit) that is
    Forms [32 Bit] Version 6.0.8.23.2 (Production)
    And also I want to install in the same computer the REPORT BUILDER (32- BIT) that is
    Report Builder 6.0.8.23.0
    How can I do that what is the setting for the TNSNAMES.ORA.
    Please in details, and with example if it is possible.
    Best regards
    Jamil alshaibani

    Hi friends
    I have install oracle9I release 1 (9.0.1) in my PC ,so I was able to connect oracle through SQL PLUS ,
    It means that tnsname.ora file is configured properly as for as the database is concerned
    But when I try to connect through the developer form to the database I got this message
    ORA-12203: TNS UNABLE TO CONNECT TO DISTINATION
    The oracle database have been install in D:\ORACLE and the developer have been installed in
    C:\ORACLE
    I have copied the tnsname.ora from D:\ORACLE to c:\oracle\net80\admin, but still I got this message ORA-12203: TNS UNABLE TO CONNECT TO DISTINATION
    Waiting for your valuable answer
    Best regards
    jamil

  • Problems facing while installing Oracle 8i personal edition under win98se

    hello,
    I am having problems while installing Oracle 8i personal edition
    under win98se.
    I am stuck on the creation of database. it always stuck at 85%.
    I've try installed many many times.. but it still the same..
    what can i do?
    i am using win98 se.
    is there any solution for this problems?
    thanks~!

    Under Win 98SE (Personal Oracle 8i)creation of database - very
    long. Therefore choose a mode of creation of base - copy from CD.
    Then the base can be increased.
    Best regards - Alex

  • Cannot install Oracle 8i (Personal Edition) 8.1.7 on Windows 98 (Second Edition)

    Hello,
    I am unable to install Oracle 8i Personal Edition on my Windows 98 (Second Edition) system. I have selected "typical" install. All the files get installed (100% complete) but then the Configuration Tool install phase fails to complete when installing Oracle Database Configuration Assistant. I get the following error message :
    java.lang.NullpointerException
    at DropOracle.QueryDB(Compiled Code)
    at DeletePanel.InitControls(Compiled Code)
    at DeletePanel.<init>(DeletePanel.java:100)
    at DBCreateWizard.<init>(DBCReateWizard.java:569)
    at DBCreateWizard.main(DBCreateWizard.java:1422)
    The system just hangs with the "in progress" message.
    The previous step -
    The Net8 Configuration Assistant install completes successfully
    (return code 0).
    If anyone can help me resolve my problem it will be greatly appreciated.
    Or if you could tell me which Oracle email address (or phone number) I should address my problem to it will be appreciated. I do NOT have a Oracle Support Licence (I only purchased the evaluation CD pack).
    I have installed Java 2 (JDK 1.3) in a separate directory - but I understand Oracle 8i has its own version of JRE 1.1... in its own subdirectory structure ... so my JDK 1.3 should not be interfering with the Oracle 8i installation programs.
    Many thanks in advance.
    Partha Sur
    732-873-2547

    What is your RAM? I ran into the same problem, even though I had more RAM then required. I had to shutdown everything, make a very basic wallpaper that did not put too much strain on the system, then it installed.
    Unistall Oracle, remove all the remaining files and the directory by hand. Also you have to remove any trace of Oracle in your regedit. Check if path to Oracle is still in autoexec.bat; if it is delete it - the Oracle path not the file. Reboot and then do Alt-Ctr-Del and turn off all the unecessary programs and try installing it again.
    Hope it works.
    Iwona

  • Installing Oracle 10g personal edition

    Hi,
    I am trying to install Oracle 10g personal edition on ubuntu. After installing I ran the following command: /etc/init.d/oracle-xe configure and by mistake gave a port number for HTTP port on which already another server is running. But now I am unable to change my configuration settings.
    Everytime I give the command /etc/init.d/oracle-xe configure it says "Oracle Database 10g Express Edition is already configured"
    How can I change the configuration setting now? Do I need to reinstall it? Would be a great help, if somebody can tell me.
    Thanks,
    tulip

    In oder for you to handle ports and monitor port assignment follow these steps:
    SQL*Plus: Release 10.1.0.2.0 - Production on Mi Jan 25 11:44:33 2006
    Copyright (c) 1982, 2004, Oracle.  All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Beta
    SQL> -- get current status
    SQL> select dbms_xdb.gethttpport as "HTTP-Port"
                , dbms_xdb.getftpport as "FTP-Port" from dual;
    HTTP-Port   FTP-Port
         8080          0You can change the http port and the ftp port to whatever you like (keep in mind that you need special privileges for ports < 1024 on Unix/Linux systems).
    SQL> -- set http port and ftp port
    SQL> begin
    2    dbms_xdb.sethttpport('80');
    3    dbms_xdb.setftpport('2100');
    4  end;
    5  /
    PL/SQL procedure successfully completed.
    SQL> select dbms_xdb.gethttpport as "HTTP-Port"
                , dbms_xdb.getftpport as "FTP-Port" from dual;
    HTTP-Port   FTP-Port
           80       2100If you only want to use the database without allowing access via http or ftp then you can disable both:
    SQL> -- disable http and ftp access
    SQL> begin
    2    dbms_xdb.sethttpport('0');
    3    dbms_xdb.setftpport('0');
    4  end;
    5  /
    PL/SQL procedure successfully completed.
    SQL> -- get current status
    SQL> select dbms_xdb.gethttpport as "HTTP-Port"
                , dbms_xdb.getftpport as "FTP-Port" from dual;
    HTTP-Port   FTP-Port
            0          0~ Madrid

  • OCX errors went installing Oracle 8i personal edition

    I downloaded the zip for 8i personal edition. When trying to install it I repeatedly got errors that the OCX could not be registered. Can someone tell me how to correct this?

    It is not possible installing Oracle in WINDOWS ME platform, because this won't support for ORACLE. Unfortunately ORACLE also have no version for WINDOWS ME. If possible, upgrade your OS to WINDOWS 2000 or downgrade to WINDOWS 98 and try it.

  • Installing oracle 8i personal edition 8.1.5 on windows XP system

    I want to know the installing procedure for oracle 8i personal edition 8.1.5 on windows XP system or which version of Personal Oracle can be loaded in Windows XP System. Pl do the needful.
    Thanks & Regards,
    Shahul.

    8I ON XP
    be careful xp stand for xtra problem :-)
    i think if u want to install oracle personal edition
    on xp go for
    Oracle9i Database Release 2 Enterprise/Standard/Personal Edition for Windows NT/2000/XP
    see
    http://otn.oracle.com/software/products/oracle9i/index.html
    and enjoy your life:-)
    kuljeet pal singh

  • Trouble installing Oracle 9.2.0.4 Prerequisites on RHEL4ES!!

    Hello,
    I am trying to install Oracle 9.2.0.4 on RedHat Enterprise Linux 4.0 ES with the help of this linked article.
    I am having trouble with the installation of Pre-requisites packages. Since i don't have Oracle Metalink UID and PWD, i downloaded following packages from other various sources on internet:
    compat-libcwait-2.1-1.i386.rpm
    compat-oracle-rhel4-1.0-5.i386.rpm
    xorg-x11-deprecated-libs-devel-6.8.2-1.EL.13.36.i386.rpm
    xorg-x11-deprecated-libs-6.8.2-1.EL.13.36.i386.rpm
    xorg-x11-devel-6.8.2-1.EL.13.36.i386.rpm
    xorg-x11-libs-6.8.2-1.EL.13.36.i386.rpm
    Following is the output i get when i try to install xorg-x11-deprecated-libs-devel-6.8.2-1.EL.13.36.i386.rpm and xorg-x11-devel-6.8.2-1.EL.13.36.i386.rpm packages:
    # ./batch
    make-3.80-6.EL4
    compat-db-4.1.25-9
    compat-gcc-32-3.2.3-47.3
    compat-gcc-32-c++-3.2.3-47.3
    package compat-oracle-rhel4 is not installed
    compat-libcwait-2.1-1
    compat-libgcc-296-2.96-132.7.2
    compat-libstdc++-296-2.96-132.7.2
    compat-libstdc++-33-3.2.3-47.3
    gcc-3.4.6-3
    gcc-c++-3.4.6-3
    gnome-libs-1.4.1.2.90-44.1
    gnome-libs-devel-1.4.1.2.90-44.1
    libaio-devel-0.3.105-2
    libaio-0.3.105-2
    make-3.80-6.EL4
    openmotif21-2.1.30-11.RHEL4.6
    package xorg-x11-deprecated-libs-devel is not installed
    xorg-x11-deprecated-libs-6.8.2-1.EL.13.37.2
    # rpm -Uvh xorg-x11-deprecated-libs-devel-6.8.2-1.EL.13.36.i386.rpm \
    xorg-x11-devel-6.8.2-1.EL.13.36.i386.rpmwarning: xorg-x11-deprecated-libs-devel-6.8.2-1.EL.13.36.i386.rpm: V3 DSA signature: NOKEY, key ID 0c98ff9d
    error: Failed dependencies:
            xorg-x11-deprecated-libs = 6.8.2-1.EL.13.36 is needed by xorg-x11-deprecated-libs-devel-6.8.2-1.EL.13.36.i386
            xorg-x11-libs = 6.8.2-1.EL.13.36 is needed by xorg-x11-devel-6.8.2-1.EL.13.36.i386
        Suggested resolutions:
            xorg-x11-deprecated-libs-6.8.2-1.EL.13.36.i386.rpm
            xorg-x11-libs-6.8.2-1.EL.13.36.i386.rpm
    # rpm -Uvh xorg-x11-libs-6.8.2-1.EL.13.36.i386.rpm
    warning: xorg-x11-libs-6.8.2-1.EL.13.36.i386.rpm: V3 DSA signature: NOKEY, key ID a7048f8d
    error: Failed dependencies:
            xorg-x11-libs = 6.8.2-1.EL.13.37.2 is needed by (installed) xorg-x11-xfs-6.8.2-1.EL.13.37.2.i386
            xorg-x11-libs = 6.8.2-1.EL.13.37.2 is needed by (installed) xorg-x11-6.8.2-1.EL.13.37.2.i386
            xorg-x11-libs = 6.8.2-1.EL.13.37.2 is needed by (installed) xorg-x11-devel-6.8.2-1.EL.13.37.2.i386Since i am not able to install above packages, i can't even install compat-oracle-rhel4-1.0-5.i386.rpm. How should i install xorg-x11-deprecated-libs-devel or compat-oracle-rhel4-1.0-5.i386.rpm? how to proceed from here? Please advice. Thanks.
    Regards,

    I figured out the problem and have now installed all pre-requisites packages. The problem was i was installing wrong version of xorg-x11-deprecated-libs-devel package.
    regards,

  • Unable to install Oracle 8i Personal Edition in Windows98 with Pentium4

    I am getting error "Performed illegal Operation" when ever I
    unzip and install Oracle 8i PE 8.1.7 for windows98. Error is
    JREW caused an invalid page fault in module JAVAI.DLL,
    suggestions was install new JRE Version. I have tried to format
    hard drive (twice) thinking some software incompatibility, no
    go. remove devices, no go. After further analysis it seems there
    is issue installing 8i databse Personal Ed. in Pentium 4
    processor with an Intel motherboard latest Bios. I have
    downloaded and installed JRE Version 1.1.8_008, still no go.
    What am i missing? Please advice or suggestion. Thank you. Email
    me- [email protected]

    I am unable to install 8i personal edition Release 3 onto my W2K machine. I download the zip file and unzip it into (c:/OracleInstall) a folder I have created on my c:/ drive. When i click on the setup.exe file it opens up. When I click on the install button the GUI disappers and nothing occurs. I have attempted to burn it onto a CD_Rom and install through the control panel and the same occurs.
    I am not sure what is causing this problem. Is there any why I could request the software in a CD as opposed to a zip file? What could be causing this problem? Is the machine a P4? there is a known problem
    I don't know about his machine, but mine is a P4. Where do I find this information about this problem? And is there a fix? I need to install the NET8 Assistant.

  • Trouble installing Oracle 9i/10g on Vista

    Hi
    I am facing trouble in installing Oracle 9i/10g on MS Vista. Am getting message "Oracle < Version > is incompatible to this version of Windows".
    I am in confusion whether MS Vista supports Oracle products or am I doing anything wrong.
    Please help me in solving this. Got strucked here.
    Thanks in advance.
    Buddha.

    Vista has some serious architecture differences that Oracle is working on. The current 9i.10g databases won't work. I got around the error you say, but then the installer just bombs out.

  • Installing Oracle 8i Personal Edition in Win98

    Hi,
    Would like to find out if there is any issue in installing Oracle 8i Personnal Edition in windows ME.
    I have this error message when I tried to install the programme.
    "Jrew has caused an error in JAVAI.DLL. Jrew will now close."
    Anyone can help ??
    Thanks a million... :)
    Alvin Tan

    It won't work on ME. Look back in the discussion forum about a month ago, some people wrote in about how you might change your registry to get it to work. Didn't work on my system though. Good luck!

  • Installing Oracle 8i Personal Edition on Home Computer

    I'm installing Oracle 8i from CD included in SQL text book.
    Unzipping of files goes well. System locks up right
    after "setup" screen, showing the message, "updating System PATH
    variable." Necessary to do an "end task" to free up the
    system. Any suggestions on how to successfully compete the
    installation?
    2nd issue: When starting SQL Plus using the above mentioned
    software, a network login dialogue box appears. How does one
    get around this dialogue box, especially knowing that this home
    computer is not on a network?
    Thank you.

    I'm installing Oracle 8i from CD included in SQL text book.
    Unzipping of files goes well. System locks up right
    after "setup" screen, showing the message, "updating System PATH
    variable." Necessary to do an "end task" to free up the
    system. Any suggestions on how to successfully compete the
    installation?
    2nd issue: When starting SQL Plus using the above mentioned
    software, a network login dialogue box appears. How does one
    get around this dialogue box, especially knowing that this home
    computer is not on a network?
    Thank you.

  • Trouble installing oracle 10

    Hi, I'm trying to install oracle 10 on a computer with Linux (CentOS).
    After performing the pre-installation.
    When executing the instruction. / runInstaller, it generates the following error:
    Exception in thread "main" java.lang.UnsatisfiedLinkError: / tmp/OraInstall2011-02-02_05-14-48PM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: can not open shared object file : No such file or directory
    I searched for a solution several forums but have not found anything yet, I hope I can help.
    Thank you very much.

    thanks Dude:
    I had forgotten to make system setup, review the packages must be pre-installed, before running the oracle installer. I forgot as it had done previously but for oracle 11, then I got confused and let this pass as ready, I did not check that the packages were already installed.
    Thank you very much for your response, it was just what I needed.

  • Problem installing oracle 817 Personal Edition in non-interactive mode

    When I install oracle 817 PE in silent mode, if there's a pre-8.1.6 version of Oracle already installed the Oracle Data Migration Assistant pops up. This is exactly what I don't want to happen. Is there a way to keep ODMA from launching? Thank you.

    It is not possible installing Oracle in WINDOWS ME platform, because this won't support for ORACLE. Unfortunately ORACLE also have no version for WINDOWS ME. If possible, upgrade your OS to WINDOWS 2000 or downgrade to WINDOWS 98 and try it.

  • Having trouble installing Oracle onto Linux?

    If you are having difficulties making sense of the lame docs that
    Oracle has provided for installing Oracle 8 onto Linux, please
    visit this website:
    <a
    href="http://amoeba.sagemediagroup.com/oracle_linux_howto/">http:
    //amoeba.sagemediagroup.com/oracle_linux_howto/</a>
    After much hacking and frustration, I managed to get my install
    working correctly and decided to detail step-by-step what I did
    to get it there. I hope this helps!
    -Reuben
    null

    I just wanted to chime in here and say that I experienced exactly
    the same problems as Fred, whilst trying to install 8.0.5 onto
    Mandrake Linux 6.
    Any suggestions much appreciated.
    Fintan
    Fred (guest) wrote:
    : Reuben King (guest) wrote:
    : : If you are having difficulties making sense of the lame docs
    : that
    : : Oracle has provided for installing Oracle 8 onto Linux,
    please
    : : visit this website:
    : : <a
    href="http://amoeba.sagemediagroup.com/oracle_linux_howto/">http:
    : : //amoeba.sagemediagroup.com/oracle_linux_howto/</a>
    : : After much hacking and frustration, I managed to get my
    : install
    : : working correctly and decided to detail step-by-step what I
    : did
    : : to get it there. I hope this helps!
    : : -Reuben
    : I try every step just as the document told but when you come to
    : the step applying the patch, you will find out that one of the
    : library (I think it is the C library) being mentioned in the
    : patch is missing. I try to look up this library in RedHat's
    : download area, they don't have it. Instead a similar C++
    library
    : is there. Of course I cannot sure that is the one I'm looking
    : for. After I apply the patch, many of the executiables such as
    : svrmgrl, lsnrctl, etc are not functioning. I find out that many
    : executables are not linked and have an "0" at the end of each
    : executable. I use RedHat 6.0 and Oracle 8.0.5 Enterprise
    : Edition. Finally, I had to fall back to RedHat 5.2 and the
    : installation is smooth as it goes. Hope someone can give me
    : some Hints on this matter.
    : Fred
    null

Maybe you are looking for

  • How to resolve data request error in cube load

    I apologize in advance if this is too much detail, but here goes... We are on BW 3.5 and have only one cube active (0SD_C03).  This cube contains five data targets.  One of these targets had an update request fail due to an error in the transfer rule

  • Can I use two apple TV on the same wifi system?

    Can I use twoo apple tv on the same wifi system??

  • ABAP API for MDM work flow

    Hi SDN, I need some information related to ABAP API for MDM workflow. I did search in SDN and I found one solution in a thered posted on Jul-2008. ABAP API - MDM Workflow execute My dought is: Do we have any ABAP API for call MDM work flow. Please pr

  • I can't get paddy power app to open after enabling location services?

    i have reinstalled twice. keeps telling me to enable location services. have done several times and restarted. also cleared cache. same problem with betfair app. ipad 3 and latest iOS.

  • Internal Order's Planning change history

    Hi Experts, As per our requirement, we want to track changes made in Internal Order (Tr .code KO02) whenever changes made in only planning (not in Master data for which we are able find change documents). Also for Planning changed history we are able