General Question - Why is Oracle such a pain to install on a Windows 2000 server

IS this by Design? I have to use Oracle for one of my clients and I cant get 8.1.6 , 8.1.7 or 9 to install correctly for anything. Im confused about things like why the database wont start, or it says its started under services but of course its not. I sometimes (like once) can get the management console to come up but I usually have my fingers crossed and grabbing my lucky rabbits foot. Whats up? Am I "oracle challenged" here or do others experience the same issues?
Any help is welcome.
thanks in advance.

Hi!
This (http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=159333.1) guide on metalink also does the trick.
Regards Mikael
I feel your pain. I've probably installed the RDBMS on 25 separate Windows servers in the last 5 years (versions 7.3 through 9.2) as well as iFS, iAS, etc. For a novice, and even a pro, it can be a hair pulling experience. I've virtually given up trying to do upgrades and fortunately I've been able to schedule downtime for those servers requiring upgrades. Even for "clean" machines it isn't always 100% reliable. My experiences installing Oracle on Linux have been harrowing, and it is only for someone that is truely committed. My best advice, is get yourself a true test machine that you can completely redo, and test installing it. For Windows, if an install fails (or if you want to "get rid of an older version of Oracle all together" before you upgrade), then do the following (do not do this on production machine, or with anything that you want to keep, and it is not sanctioned by Oracle, and no warranties what so ever).
1) De-install all Oracle products using Universal installer.
2) Remove all Oracle entries from the path statement
3) Delete all of the files in the Oracle directory. There will be problems with some files in Bin.
4) Using Regedit delete the software registry keys for Oracle (hkey_local_machine\software\oracle).
5) Delete any left over entries in the registry for Oracle services (hkey_local_machine\system\CurrentControlSet\Services\Ora*)
6) Delete all of the oracle files in program files\oracle
7) Reboot
8) Delete the files in the oracle directory that couldn't be deleted in step #3 above and #6 (if any)
Oracle should now be gone, and you should be able to test another installation.

Similar Messages

  • Problem installing Oracle 8i(8.1.7) standard edition on windows 2000 server

    I am trying to install Oracle 8i (8.1.7) standard edition on windows 2000 server but the setup program doesn't run.
    It starts up, allocates some ram then closes before a window even pops up.
    I also have MSSQL server installed on this computer, does that conflict?
    Has anyone encountered this problem before? If so, please give a solution if you have one, thanks,
    OPS

    Yes. There is a bug with Pent4, Win2000 & Oracle8i.
    Here is the workaround:
    This is a known bug with Oracle java-based applications and Pentium 4 Use this work-around:
    1) Copy the install directory from the CD to the hard disk.
    2) Edit oraparam.ini and modify it as follows:
    * Edit the "SOURCE=" line to to show the full path to the CD ; SOURCE={CD DRIVE LETTER}:\stage\products.jar)
    * Edit the "JRE_LOCATION" line to show the full path to the CD ;
    JRE_LOCATION={CD DRIVE
    LETTER}:\stage\Components\oracle\swd\jre\1.1.7\1\DataFiles\Expanded)
    * Edit the "OUI_LOCATION" line to show the full path to the CD ;
    OUI_LOCATION={CD DRIVE
    LETTER}:\stage\Components\oracle\swd\oui\1.6.0.9.0\1\DataFiles\Expanded
    * Edit the "JRE_MEMORY_OPTIONS" line to include "-nojit" as the first argument ;
    JRE_MEMORY_OPTIONS=-nojit
    -ms16m -mx32m
    3) Start setup.exe from your hard drive
    Choose a Custom install and choose not to create a database during the install.
    This way, the Database
    Configuration Assistant will not be launched during installation. DONT SELECT
    NET8 products for installation.
    You need to put the same java parameters for the DB configurator and the Net8
    Configurator
    to run.
    -nojit -ms16m -mx32m before -classpath on:
    * assistants\dbca\DBAssist.cl
    * network\tools\netca.cl
    ** Run the DataBaseConfigurationAssistant and NetworkConfigurationAssistant after installation.
    Hope it helps!
    Amrit

  • Installing ORACLE 9i (9.0.1.1.1) On Windows 2000 Server

    I am not able to install Oracle 9.0.1.1.1 on Windows 2000 Server 5.00.2195(service pack 4).
    While installing Oracle 9i on Windows 2000(SP4), installer exits without showing or logging any error. It disappears without any message.
    Machine: PIII (450Mhz), 256MB RAM, External disk (USB) 80GB, Disk C (10GB), Virtual Memory 1536 - 2000, etc.
    When I get the screnn "General Purpose", and after 85% running Oracle Universal Installer exits without showing or logging any error.
    Does anybody know the reason/workaround for this problem?
    Thanks.
    Regards,
    Jose Valentin

    Hi,
    I got similiar problem on Windows 2000. Have you resolved this?
    Thanks

  • How I can do when I install Oracle 8.1.7.0 & Oracle9i core for Windows 2000?

    I downloaded Oracle8.1.7 standard Edition and Oracle9iAS Core for Windows NT.
    I installed them on Windows 2000 Server. I checked that Oracle HTTP server was working.
    But how can I get more information from Internet about Oracle Application Server?
    I want to query database through the web. Give me a simple example about it.
    Best regards,
    Richard Xu

    Oracle 9iAS Documentation can be found at,
    http://technet.oracle.com/docs/products/ias/content.html
    You can access few samples of web query in
    Oracle JSP demos, from your iAS Apache main page. There are XML, JDBC and SQLJ samples.

  • Why is it such a pain to use java in a country that uses commas as decimal?

    Why is it such a pain to use java in a country that uses commas as decimal separator?
    A few weeks back I've asked here about the keypad decimal key. For some reason, java doesn't map the decimal key to a comma on the Portuguese (Portugal) keyboard layout. I've got no answer and I ended up using a custom plainDocument on the JTextFields to replace all points with commas.
    Now, I've just spent the whole morning trying to store and use decimal numbers properly. For some reason, a Double/Float .valueOf method (or the corresponding parse method) simply ignores the locale in use and uses US defaults when parsing the string. I can't parse anything with commas in those methods and I should, as it is the decimal separator for the system and default locale being used by java.
    First of all, I shouldn't be expected to perform replacements on every single operation that comes with a comma and I obviously can't be expected to program my own locale checking to decide what decimal separator to use in each final system. Second, is there any way to work with numbers seamlessly, without having to know the locale of the end user?
    I'm sorry if this is all my fault for doing something completly wrong, I'm new to java and I did search around to no avail. I'm really frustrated with what seems to be a complete lack of support in java for locales other than the US one.

    Good old Cobol has the "DECIMAL-POINT IS COMMA" clause... And isn't it great? :)
    Second, is there any way to work with numbers seamlessly, without having to know the locale of the end user?Consider "123.456". In some locales, this number is one hundred twenty-three thousand, four hundred fifty-six. In other locales it is one hundred twenty-three and four hundred fifty-size thousandths. How will you be able to determine which, without a locale?That's not what I've meant. Java should know the locale and behave accordingly. I don't have to know the locale of the end user since it might vary greatly. My point is that if strings are flying around with commas and if comma is the decimal separator on the end user's machine, any method aimed at parsing a numeric value out of a string should regard commas as such. I'm constantly replacing dots with commas and vice versa which could cause trouble if a different locale is used.
    And I mean that as a rant. Given my inexperience with Java, there might be good reasons for such a behaviour as baftos argued. What I'm really interested is in finding the proper way to deal with this issue.
    Have you tried the NumberFormat.parse? I will now.
    Edited by: Smigh on Apr 9, 2008 9:21 AM

  • Install Oracle 8i Personald Edition on Windows 2000 Server SP2

    Hi
    I have problem to install the Oracle 8i Personal Edition on
    Windows 2000 Server SP2.
    I run the Setup.exe, I become the message (not exactly) “JRE
    (Java Runtime Environment) was not found…… please visit
    www.javasoft.com….. and install JRE version 1.1.7 or higher…”
    Now, I have download and install this JRE (JavaTM 2 Runtime
    Environment v 1.2.2_008 / Internationalized version of Java 2
    Runtime Environment).
    The error-messages comes again.
    Have everyone a idea?

    hi phill...
    why dont you try it out with the same CD and increase your RAM
    by another 64MB? This will be enough. The reason is , most
    Oracle 8i releases are combined with a java based Oracle
    Universal Installer. This requires some good amount of RAM. Just
    try it out with some extra memory. If this also didnt work, then
    send in the problem,error with your system config. This will
    help me in solving your problem.
    Imran.

  • Installing oracle 10g on windows 2000 server

    hi masters,
    this might look very silly question, and every child might know answer, but i would like to ask this question here that
    i have oracle 9i release 2 installed on my windows server 2000 and an application is already running, now i want to install oracle 10g on same machine...
    but when i try to launch oracle universal installer, it fails to launch it....whay is this so??? do i need to adjust some parameters to install it????
    can anyone provide a checklist to check??i have an antivirus installed on machine...
    any suggestion will be appreciable
    thanks and regards
    VD

    got my answer, you can follow this step.
    on windows 2000 server while launching oracle universal installer, due to jre bug (noted in metalink 266617.1 doc and 393070.1) installer CMD prompt launch and disapper in a while... so run following command on command prompt
    to resolve the issue.. change directory path according to your directory structure.
    change directory to your oracle installation setup.exe directory and execute following command
    C:\>\backup\SoftwareBackup\Database10g\database\install\oui.exe -J-Dsun.java2d.noddraw=truethanks and regards
    VD
    Edited by: vikrant dixit on Apr 21, 2009 4:47 AM
    Edited by: vikrant dixit on Apr 21, 2009 4:48 AM
    Edited by: vikrant dixit on Apr 21, 2009 4:50 AM

  • Oracle 9.2.0.1 software URL for window 2003 server

    I go to http://www.oracle.com/technology/software/products/oracle9i/index.html
    and download two zip files from Oracle9i Release 2 (9.2.0.1) for Windows SERVER 2003.
    However, one zip file is for the Oracle installer and the other zip file is for
    9.2.0.3 patch.
    There is NO 9.2.0.1 base software for window 2000 server.
    Where can I download the 9.2.0.1 base software for window 2000 server (32 bit)?
    Thanks.

    Hi,
    From metalink :
    Microsoft Windows 2003 (x86) Version 2003
    Oracle Database - Enterprise Edition Version 9.2
    Status: Certified
    Certification Note: Patch Set 9.2.0.3.0 or higher is required.
    That's why when you download 9iR2 for W2003 32-bits, you download the 9.2.0.3.
    Nicolas.

  • Developer 6i Installation with Oracle 8i on Windows 2000 Server

    Hi Folks,
         We are using Oracle 8i (8.1.7) with Developer 6i for the past 2-3 years. Oracle 8i is installed on Windows 2000 Server and the client machines have Developer 6i installed. Using the Net 8 Easy Configuration Utility, the clients and the server are linked perfectly and we have never experienced any major issue regarding the connectivity from the client’s sides.
         Now my question is that, is there any possibility that we can also install Developer 6i on the server, ‘cause we have tried this several times and every time after installing Developer 6i on the server, the Net 8 Easy Configuration Utility does not invokes and obviously we are unable to use any of the Developer 6i products and moreover after installing Developer the already installed 8i Database does not gets mounted and we are also unable to use the database.
         Are we missing some basic stuff here or do we need to run some patch for Windows 2000 Server?
         Another thing, all our forms and reports are residing on client’s hard disks; can we also have the option that the forms and reports should also reside on the server so that we can easily update our forms and reports definitions from the server side?
    TIA
    Hassan

    Hi,
    Yeah, I installed both the products i.e, database and developer in separate directories.
    Hassan

  • 2 nodes RAC with Oracle 10g on Windows 2000 server

    Hi at all. I want to manage a cluster having 2 nodes on windows 2000 server each of them with Oracle 10g. I have VMWare 5.0. Someone can suggest me a detailed tutorial how to start and built it? Thank you very much for your answers.
    Saverio Sergio Mola

    the cookbooks here:
    http://www.oracle.com/technology/tech/linux/vmware/cookbook/index.html
    will explain how to install.. however the VMware Workstation product doesn't offer in a supportedway the sharing of two nodes of disks.. there are hacks out there, but they are not very stable. We therefor chose to install two instances on one node to showcase RAC, rather than make it complicated and unstable to use and showcase.
    there are also ready made VM's from above page, so u can quickly evaluate it for both Red HAt and SuSE.. when vmware can support such sharing in an easy supported way we might re-evaluate.. until then my personal suggestion is to stick to simple case.. 2 instances on one node.. its easier to copy, snapshot.. etc.
    Enjoy..
    Saar.

  • Can I install Oracle 8.1.5 on Windows 2000 server or Windows 2000 professional

    Hi,
    Can I install Oracle 8.1.5 on a Windows 2000 server or Windows 2000 professional server?
    Regards,
    Zurvaan

    Yes, of course. Both versions works but you have to be prepared for lots of RAM.

  • Service pack 4 on windows 2000 server with  oracle 8.1.7

    Hi,
    does anyone know if there is any problem installing services pack 4 on windows 2000 server having oracle 8.1.7.?
    Thanks.

    I have one machine with that configuration and I had not any problem.
    Joel P�rez

  • Error while installing CRM 4.0 SR1 with Oracle 10.2 on Windows 2000 Server

    Hi.. I'm getting error messages in the Database Instance phase, while installing <b>CRM 4.0 SR1 with Oracle 10.2</b> on Windows 2000 Server. Following are message snippets with last few lines showing error message:
    <b>SAPSSEXC.log</b>
    [code](DB) INFO: REPOSRC~0 created
    (DB) INFO: REPOTEXT created
    DbSl Trace: ORA-4031 occured when executing SQL statement (parse error offset = 0)
    (IMP) ERROR: DbSlExeModify/DbSlLobPutPiece failed
      rc = 99, table "REPOTEXT"
      (SQL error 4031)
      error message returned by DbSl:
    ORA-04031: unable to allocate 84 bytes of shared memory ("shared pool","select name,intcol#,segcol#,...","Typecheck","opndef:qkexrAddMatching1")
    (DB) INFO: disconnected from DB
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: END OF LOG: 20121102144208
    [/code]
    <b>SAPAPPL2.log</b>
    [code](DB) INFO: SMOT413~0 created
    (DB) INFO: SMOT413~R04 created
    DbSl Trace: ORA-604 occured when executing SQL statement (parse error offset = 31)
    (DB) ERROR: DDL statement failed
    (CREATE  INDEX "SMOT413~R05" ON "SMOT413" ( "MANDT" , "ERSKZ"  ) TABLESPACE PSAPCRM STORAGE (INITIAL 16384 NEXT 0000000040K MINEXTENTS 0000000001 MAXEXTENTS 2147483645 PCTINCREASE 0 ) )
    DbSlExecute: rc = 99
      (SQL error 604)
      error message returned by DbSl:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-04031: unable to allocate 4108 bytes of shared memory ("shared pool","select owner#,name,namespace...","Typecheck","seg:kggfaAllocSeg")
    (DB) INFO: disconnected from DB
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: END OF LOG: 20121102144207
    [/code]
    <b>SAPSLEXC.log</b>
    [code]DbSl Trace: ORA-1403 when accessing table SAPUSER
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): WE8DEC
    (DB) INFO: CO2MAP created
    (IMP) INFO: import of CO2MAP completed (0 rows)
    (DB) INFO: CO2MAP~0 created
    (DB) INFO: CO2MAP~IDX created
    DbSl Trace: ORA-604 occured when executing SQL statement (parse error offset = 0)
    (DB) ERROR: DDL statement failed
    (CREATE TABLE "CO2MAPINF" ( "SRCID" VARCHAR2(30) DEFAULT ' ' NOT NULL , "METHID" VARCHAR2(1) DEFAULT ' ' NOT NULL , "APPLNAME" VARCHAR2(30) DEFAULT ' ' NOT NULL , "PAGEKEY" VARCHAR2(70) DEFAULT ' ' NOT NULL , "ID" NUMBER(10) DEFAULT 0 NOT NULL , "LANGUAGE" VARCHAR2(1) DEFAULT ' ' NOT NULL , "NAMESPACE" VARCHAR2(30) DEFAULT ' ' NOT NULL  ) TABLESPACE PSAPCRM620 STORAGE (INITIAL 16384 NEXT 0000000640K MINEXTENTS 0000000001 MAXEXTENTS 2147483645 PCTINCREASE 0 ) )
    DbSlExecute: rc = 99
      (SQL error 604)
      error message returned by DbSl:
    ORA-00604: error occurred at recursive SQL level 2
    ORA-04031: unable to allocate 84 bytes of shared memory ("shared pool","select ts#,file#,block#,nvl(...","Typecheck","opndef:qkexrAddMatching1")
    (DB) INFO: disconnected from DB
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: END OF LOG: 20121102144742
    [/code]
    <b>SAPSDIC.log</b>
    [code](DB) INFO: TNMAP~0 created
    (DB) INFO: TODIR created
    DbSl Trace: ORA-604 occured when executing SQL statement (parse error offset = 0)
    (IMP) ERROR: DbSlExeModify/DbSlLobPutPiece failed
      rc = 99, table "TODIR"
      (SQL error 604)
      error message returned by DbSl:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-04031: unable to allocate 4108 bytes of shared memory ("shared pool","update seg$ set type#=:4,blo...","Typecheck","seg:kggfaAllocSeg")
    (DB) INFO: disconnected from DB
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: END OF LOG: 20121102144811
    [/code]
    <b>SAPSDOCU.log</b>
    [code](DB) INFO: TLSY3~0 created
    (DB) INFO: TLSY5 created
    (IMP) INFO: import of TLSY5 completed (3 rows)
    DbSl Trace: ORA-604 occured when executing SQL statement (parse error offset = 33)
    (DB) ERROR: DDL statement failed
    (CREATE UNIQUE INDEX "TLSY5~0" ON "TLSY5" ( "LANGU", "REL", "OLD_REL", "IMP_DATE" ) TABLESPACE PSAPCRM STORAGE (INITIAL 16384 NEXT 0000000080K MINEXTENTS 0000000001 MAXEXTENTS 2147483645 PCTINCREASE 0 ) )
    DbSlExecute: rc = 99
      (SQL error 604)
      error message returned by DbSl:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-04031: unable to allocate 4108 bytes of shared memory ("shared pool","update seg$ set type#=:4,blo...","Typecheck","seg:kggfaAllocSeg")
    (DB) INFO: disconnected from DB
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    C:\usr\sap\CRM\SYS\exe\run/R3load.exe: END OF LOG: 20121102144811
    [/code]
    I am not sure but I think the problem is with the allocated shared memory size, which right now is:
    <b>init.ora</b>
    [code]shared_pool_size = 67108864[/code]
    <b>init<SID>.ora</b>
    [code]shared_pool_size = 90112000
    shared_pool_reserved_size = 9011200
    [/code]
    If this is the cause of the problem then how much should i increase it to? and do i need to modify the size in both files or only init<SID>.ora? Is there any SAP Note related to this problem? Thanks.
    Regards,

    Hi Vasu,
    ORA-4031... for 99%  of cases this means one thing:
    the database instance is not configured correctly.
    To proceed, do the following:
    1. get rid of init.ora (it's not used at all)
    2. make sure that the init<sid>.ora file is really used.
       If there is a spfile in the %ORACLE_HOME&/database folder
       then this will be used.
    3. With your  configured shared pool of 85MB your memory should really not be filled up - anyhow it's really too small for a SAP system!
    Thus I'd check how much memory the other sga-area members (buffer cache, large pool, streams pool, java pool...) take up.
        Remember on Windows 32 Bit, everything runs in one single process that can only allocate 2GB (or 3GB if you've set this option).
    See note:
    <a href="https://websmp102.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=869006&_NLANG=E">#869006 - Composite SAP note: ORA-04031</a>
    for more on this.
    And when you're setting up parameters anyway, check note
    <a href="https://websmp102.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=830576&_NLANG=E">#830576 - Parameter recommendations for Oracle 10g</a>
    KR Lars

  • Oracle 8i Client running on Windows 2000 Server

    Hi,
    I have Oracle 8i Client running on Windows 2000 Server. I need to connect to Oracle 8i Server running on Sun Box.
    I have problems with connectivity.
    When I do tnsping <service name>, I am geting the followiing
    error:
    C:\>tnsping <Instance name>
    TNS Ping Utility for 32-bit Windows: Version 8.1.7.0.0 - Production on 04-FEB-20
    02 16:37:01
    (c) Copyright 1997 Oracle Corporation. All rights reserved.
    Attempting to contact (ADDRESS=(PROTOCOL=TCP)(HOST=<IP Address>)(PORT=1521)) TNS-12541: TNS:no listener
    Can any one help me out
    Thanks
    mka

    Hi,
    I have Oracle 8i Client running on Windows 2000 Server. I need to connect to Oracle 8i Server running on Sun Box.
    I have problems with connectivity.
    When I do tnsping <service name>, I am geting the followiing
    error:
    C:\>tnsping <Instance name>
    TNS Ping Utility for 32-bit Windows: Version 8.1.7.0.0 - Production on 04-FEB-20
    02 16:37:01
    (c) Copyright 1997 Oracle Corporation. All rights reserved.
    Attempting to contact (ADDRESS=(PROTOCOL=TCP)(HOST=<IP Address>)(PORT=1521)) TNS-12541: TNS:no listener
    Can any one help me out
    Thanks
    mka

  • Oracle 8i 8.1.7 on Windows 2000 Server

    After I install Oracle 8.1.7 on Windows 2000 Professional, Everything is Good, database and Enterprise Manager Server startup normal.
    But when I install Oracle 8.1.7 on Windows 2000 Server, the Oracle Service startup normal , but the database instance can not startup automatical, I must startup the database instance manual using svrmgrl program and the Enterprise Manager Server can not startup ?

    check it:
    start
    -->program
    -->$oracle_home$
    -->Database Administration
    -->Oracle Administration Assistant for Windows NT
    oracle instance 'startup/shutdown options'

Maybe you are looking for

  • Function "Follow-up in purchasing" in SAP

    Dear all, I am wondering whether you have heard of a Function "Follow-up in purchasing" in SAP? I am not quite understand of this processs, can anyone explain to me? and how does it setup in SPRO for this function to take place? thanks. tuffy

  • Is it possible to upgrade a mid 2012 Mac Pro to USB 3.0?

    My Seagate portable Free Agent Firewire drive died under warranty. Seagate stopped making portable FW drives and replaced mine with a Backup Plus Slim 2.5 USB 3.0 bus powered drive. I have a 4-Core Mac Pro (5,1) running Lion, 24 GB RAM. I know I can

  • Can this MacMini (2007) handle streaming HD video?

    I'm looking at buying an used MacMini (2007) to act as a dedicated media server. I want to make sure the one I'm looking at can properly handle HD video streaming. It's a 2007 model with the 1.83 ghz Core 2 Duo processor and 2gb ram upgrade. I'm nerv

  • Xml Import / Export Functionality (Part of the Transport Component)

    Hi I Export one of my iViews using the new xml export function . When I tried to import the xml file I get the following error Failed to extract root node Parsing failed Thanks Theo

  • No audio with imported AVCHD Clips in PE 11

    I have Premiere Elements v11.0 running on a Windows 8 machine. I have updated PE and no more updates are available. The AVCHD video I am importing is full HD, PAL at 25 fps. The audio is 384kbps 6 channels with audio sample rate of 48kHz. I can impor