Ora 8i & Developer 6i Installation

Have been medically laid up for about a year and want to get back to Oracle database learning on Personal Oracle. I can remember a three issues from my first install. 1) An issue re Developer and Oracle homes requiring DIFFERENT homes in different directories - I don't remember the outcome except to vaguely recall that I had the database in a directory called ORANTDB and Developer 6i in a Directory names ORANT; 2) An issue re whether Developer or Oracle needs to be installed first. Logically to me it should be the database but I don't remember with certainty the correct resolution of this either; and 3) I don't recall how to establish the connection between Developer 6i and the database, although I do remember some relation to a tnsnames.ora file.
In effect I am back to neophyte status, so installation help with seemingly silly questions would be appreciated.
Thank you.
Mitch

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

Similar Messages

  • SAP NetWeaver Developer Studio Installation guide

    Hi All,
    Could you please provide the SAP NetWeaver Developer Studio Installation guide?
    Thanks & Regards
    Sara

    Hi Sara,
    Go to https://service.sap.com/nw04installation go to the bottom of the page expand <b>dev env</b> and you'll see the <b>Installation Guide - SAP NetWeaver Developer Studio</b>
    this should answer your question.
    Regards
    Juan
    Please reward with points if helpful

  • ORA-12154 Developer 6

    I need advice on resolving ORA-12154 while trying to
    connect to a database using developer 6 ( Win NT 4.0
    install using SP5 - standalone machine ).
    I've installed :
    Oracle 8i ( home - OraHome81 ) - :\Oracle\Ora81
    Oracle Client ( home - OraClient ) - :\Oracle\Ora81Client
    Oracle OEM ( home - OraOEM ) - :\Oracle\OraOEM
    When I installed developer it needed to be installed
    as :\Oracle\Oradev
    I have a starter database and have configured it with
    Net 8 easy config, the connection test ran O.K.
    However when trying to connect to the database from
    developer I received an ORA-12154.
    I've checked technet.oracle.com and looked at document id
    '106355.243 WIN:ORA-12154 and SQL*NETV2' for any advice.
    The TNS listner and the database have been started in the
    Oracle services.
    The TNSNAMES.ORA file exists but I'm not sure of the
    correct location.
    Help please !
    null

    <html>
    <head>
    <meta http-equiv="Content-Language" content="en-us">
    <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>hope this will help</title>
    </head>
    <body>
    <p>hope this will help, i had this same problem and looked up the site with for
    a solution, got some good <br>
    tips, but nothing seemed to work............well there are two solutions, stated
    below<br>
    <br>
    first my system and its configuration, <br>
    i'am using oracle 9i enterprise installer and developer suite 6i, on windows nt
    OS with the following <br>
    hdd's......<br>
    c drive fat, 55mb, OS loader drive (for future multi-boots OS's )<br>
    d drive, ntfs, 16gb, contains the OS and programs etc<br>
    e drive, ntfs, 8gb, dedicated to hold oracle db<br>
    the original installation: the e drive held all data and code for the oracle
    database server and <br>
    developer suite<br>
    in other words, the e drive contained both the homes, the database and developer
    homes (under e:\oracle)<br>
    the d drive held all installation requirements and logs<br>
    under d:\program files\oracle<br>
    <br>
    first soln, least head-breaking, requires a definite amount of time, not more
    then usual, not less then <br>
    usual<br>
    clean restart, <br>
    removed all the oracle services installed into nt ( namely used a freeware prog
    called Service+ )<br>
    delete everything under HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE key<br>
    using regedit ( be very careful what u do in regedit, there is no recovery here
    )<br>
    and cleared all files under e:\oracle dir ( need a reboot to remove all files,
    some wont delete coz they <br>
    are still active and loaded )<br>
    also cleared everything under d:\program files\oracle so that the next new
    installation doesn't know of the <br>
    previous one<br>
    after doing that, rebooted, and re-installed the database server - 9i enterprise
    and then installed the <br>
    typical forms developer 6i suite ( no forms server as of yet)<br>
    after doing all this, the db's client (sqlplus) was able to connect to the
    server, but the forms client <br>
    (another sqlplus, under the developer home) wasn't able to connect.<br>
    to solve that, went to E:\oracle\ora90\network\ADMIN<br>
    ( i.e. [ORACLE_HOME]\network\ADMIN ) and copied listener.ora, sqlnet.ora and
    tnsnames.ora into <br>
    E:\oracle\ora90\dev6i\NET80\ADMIN ( i.e. [DEVELOPER_HOME]\net80\ADMIN )<br>
    and all problems were solved<br>
    <br>
    the other method, could b faster, but also could take forever, depend on ur
    'luck', but definitely more <br>
    head breaking, is to replace the '.ora' files with the info provided below, <br>
    here are what my files contain at the moments ( and yes all works fine with em )<br>
    1. LISTENER.ORA<br>
    # LISTENER.ORA Network Configuration File: E:\oracle\ora90\network\admin\listener.ora<br>
    # Generated by Oracle configuration tools.<br>
    <br>
    LISTENER =<br>
    (DESCRIPTION_LIST =<br>
    (DESCRIPTION =<br>
    (ADDRESS_LIST =<br>
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))<br>
    )<br>
    (ADDRESS_LIST =<br>
    (ADDRESS = (PROTOCOL = TCP)(<b>HOST = driven</b>)(PORT = 1521))<br>
    )<br>
    )<br>
    )<br>
    <br>
    SID_LIST_LISTENER =<br>
    (SID_LIST =<br>
    (SID_DESC =<br>
    (SID_NAME = PLSExtProc)<br>
    (<b>ORACLE_HOME = E:\oracle\ora90</b>)<br>
    (PROGRAM = extproc)<br>
    )<br>
    (SID_DESC =<br>
    (<b>GLOBAL_DBNAME = drvn</b>)<br>
    (<b>ORACLE_HOME = E:\oracle\ora90</b>)<br>
    (<b>SID_NAME = drvn</b>)<br>
    )<br>
    )<br>
    <br>
    2. SQLNET.ORA<br>
    # SQLNET.ORA Network Configuration File: E:\oracle\ora90\network\admin\sqlnet.ora<br>
    # Generated by Oracle configuration tools.<br>
    <br>
    SQLNET.AUTHENTICATION_SERVICES= (NTS)<br>
    <br>
    NAMES.DIRECTORY_PATH= (TNSNAMES, ONAMES, HOSTNAME)<br>
    <br>
    3. TNSNAMES.ORA<br>
    # TNSNAMES.ORA Network Configuration File: E:\oracle\ora90\network\admin\tnsnames.ora<br>
    # Generated by Oracle configuration tools.<br>
    <br>
    <b>DRVN</b> =<br>
    (DESCRIPTION =<br>
    (ADDRESS_LIST =<br>
    (ADDRESS = (PROTOCOL = TCP)(<b>HOST = driven</b>)(PORT = 1521))<br>
    )<br>
    (CONNECT_DATA =<br>
    (<b>SERVICE_NAME = drvn</b>)<br>
    )<br>
    )<br>
    <br>
    INST1_HTTP =<br>
    (DESCRIPTION =<br>
    (ADDRESS_LIST =<br>
    (ADDRESS = (PROTOCOL = TCP)(<b>HOST = driven</b>)(PORT = 1521))<br>
    )<br>
    (CONNECT_DATA =<br>
    (SERVER = SHARED)<br>
    (SERVICE_NAME = MODOSE)<br>
    (PRESENTATION = http://HRService)<br>
    )<br>
    )<br>
    <br>
    EXTPROC_CONNECTION_DATA =<br>
    (DESCRIPTION =<br>
    (ADDRESS_LIST =<br>
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))<br>
    )<br>
    (CONNECT_DATA =<br>
    (SID = PLSExtProc)<br>
    (PRESENTATION = RO)<br>
    )<br>
    )<br>
    <br>
    that's the end of it,  <br>
    in the text above, where it says .......<br>
    &gt;&gt; <b>HOST = driven</b> , replace <i>'driven'</i> with ur computers name, b4
    reinstalling i had tried 127.0.0.1, but it <br>
    didn't work, so just stick to the computer name ( to find ur computer name look
    under &quot;Control Panel &gt; <br>
    SYSTEM&quot; properties )<br>
    &gt;&gt; <b>ORACLE_HOME = E:\oracle\ora90</b> , replace <i>'E:\oracle\ora90'</i> with
    the folder that u have chosen <br>
    on ur computer while installing the database server<br>
    &gt;&gt; <b>GLOBAL_DBNAME = drvn</b> , replace <i>'drvn'</i> with the name of the db that u
    have created<br>
    &gt;&gt; <b>SID_NAME = drvn</b> , replace <i>'drvn'</i> with the SID that u stated while
    installing the db server, if u <br>
    havent modified the default, it will be the same as GLOBAL_DBNAME<br>
    &gt;&gt; <b>SERVICE_NAME = drvn</b> , replace <i>'drvn'</i> with the service that u have
    started, this can b located under <br>
    &quot;Admin Tools &gt; Services&quot; look for a service begining with &quot;OracleService&quot; on my
    computer it is <br>
    &quot;OracleServiceDRVN&quot; where DRVN in the service name, to confirm the service name,
    look at the services <br>
    properities, it will something like &quot;Path to executable:- e:\oracle\ora90\bin\ORACLE.EXE
    DRVN&quot; where <br>
    'DRVN' was the service name<br>
    if u used all defaults while installing, SERVICE_NAME, SID_NAME and
    GLOBAL_DBNAME will all b the same<br>
    <br>
    just modify the files as stated above and place them in<br>
    <b>[ORACLE_HOME]\network\ADMIN</b> and <b>[DEVELOPER_HOME]\net80\ADMIN</b><br>
    <br>
    hope that helps<br>
    -df<br>
    <br>
    p.s.: to make sure have replaced all the instances, give a search for the <br>
    following keywords one at a time<br>
    1. driven<br>
    2. drvn<br>
    3. E:\oracle\ora90<br>
    if the lookup fails, good, everything is in place and it should(will) work.<br>
     </p>
    <p> </p>
    </body>
    </html>

  • Developer 6i installation

    I have successfully installed oracle 8i enterprise edition 8.1.7 on a windows 2000 professional XP machine.
    When trying to install developer 6i on the same machine the installer generates an error. I am unable to start the installation.
    Thanks in advance

    hi
    i have loaded :
    oracle 8.1.7 on WINNT with SP5
    on OracleHome:d:\oracle\ora81
    then developer 6i on same PC at home : d:\oracle\ora81\dev2000
    then i have configure TNS at a) d:\oracle\ora81\network\admin\tnsnames.ora
    to connect SQLPLUS :scott/tiger@oradb
    [here it is working fine]
    b) d:\oracle\ora8\dev2000\net80\tnsnames.ora
    to connect forms. [here it is giving error]
    thanx in advance

  • ORA-12546 error during installation of 9.2.0.1 on Windows 2003 Server

    I have encountered an error whilst installing oracle 9.2.0.1 on a Windows 2003 Server. The error appears in the final part of the installation, when the Database Configuration Assistant is performing some work - it reaches the part where it creates the database instance - here we get the "ORA-12546: TNS Permission denied" error - this part of the installation is marked as failed - i can retry it as many times as i want but the same thing happens. If i finish the installation (even though the error has occurred) the oracle installation doesn't really work . I can't open the Database Configuration Assistant and don't really have a sysdba user. However all the services seem to be running fine (even the tns listener)
    I was wondering whether it could be a problem that would be solved with the 9.2.0.3 patch - but this patch assumes that you have performed a proper working installation of 9.2.0.1, so I'm not quite convinced that the problem is related to the oracle version.
    I've read other threads where the problem has been read/write privileges on some files and folders, but this shouldn't be an issue when I'm logged onto the machine as a local administrator.
    The install.log files don't really provide any extra information.

    I have exactly the same problem installing Oracle on a Windows Server 2003 X64 Enterprise Edition. I have Intel Xeon processors (EM64T).
    I tried to install Oracle for 64 bits, but it didn't work. Now I'm trying to install 32 bits version of Oracle, and I get the same error and the same problem, mentioned above.
    Can anyone help us, I can't figure out a way to solve it. I don't know if Oracle for 32 bits is not compatible with that version of Windows, even if it is supposed to be.
    Thanks!!!!

  • Developer 10G installation on vista HP (32 bit),help plz!

    hi!
    ok, i installed database 10G release2 & then tried to install developer 10g (10.1.2.0.3). after checking the requirements in DOS type mode, i received this error:
    "invalid staging area. there are no top level components for windows NT. windows 2000available for installation in this staging area."
    am i missing something really need consideration or sometthing else. please guide me how to install that on vista operating system (32 bit).
    thanks.
    sohail.

    See the thread at Re: Forms 10g installed and running on Windows Vista

  • SAP NetWeaver 7.0 SR3 Developer Workplace Installation on Windows 7 64-bit

    I am trying to install 32 bit version of NW 7.0 SR3 Developer Workplace (Max DB) on Windows 7 64 computer but the installation fails. Has any one tried this?
    Is SAP planning to release 64 bit version of Developer Worlplace?
    Edited by: Anand Bhambure on Aug 7, 2010 12:44 PM

    Hi Julian,
    I assume we are talking about NWDS 70X, because higher NWDS releases are fully supported on win7.
    Please note that there is a difference between something is working and whether we can provide support for it.
    See the official statement on this in the note:
    #1566977 - NWDS on Windows 7
    which says:
    7.00:
    There are successfull installations of NWDS 7.0x running inside and outside of SAP.
    Please make sure that the NWDS is running on a supported and correctly configured JDK.
    Please acknowledge that while you may successfully install and run NWDS 7.0x on Windows 7 this still is not a supported OS! Running NWDS 7.0x on Windows 7 is at your own risk.
    Best Regards,
    Ervin

  • Netweaver Developer Studio Installation

    I am installing developer studio with Sql server along with java engine. But during the installation after giving the path of the JDK and JCE policy following installation occurs.
    ERROR 2008-05-27 12:38:25
    MOS-01185  The subkey 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\DPS' does not exist on the 'localhost' host.
    ERROR 2008-05-27 12:38:25
    FCO-00011  The step collect with step key |NW_Workplace|ind|ind|ind|ind|0|0|NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_GetSidNoProfiles|ind|ind|ind|ind|2|0|collect was executed with status ERROR .

    you can refer to http://www.dachun.org/IS-SAP/QA/m/MOS-01185__The_subkey_HKEY_LOCAL_MACHINE_SYSTEM_CurrentControlSet_Services_DPS_does_not_exist_on_the_localhost_host.htm

  • ORA-27102 IN FRESH INSTALLATION

    Hi Forum
    I have a problem with the fresh installation my environment is:
    Solaris10 and Oracle DB10g R2 and the box have 4Gb RAM
    The installation can`t continue and stop in the Database creation 2% with the error message ora-27102, the manual quick installation say:
    ==========================================================
    On Solaris 10, use the following procedure to view the current value specified for resource controls, and to change them if necessary:
    To view the current values of the resource control, enter the following commands:
    # id -p // to verify the project id
    uid=0(root) gid=0(root) projid=1 (user.root)
    # prctl -n project.max-shm-memory -i project user.root
    # prctl -n project.max-sem-ids -i project user.root
    If you must change any of the current values, then:
    To modify the value of max-shm-memory to 6 GB:
    # prctl -n project.max-shm-memory -v 6gb -r -i project user.root
    ==================================================
    But when I change the shm-memory and reboot the box, the value is the same default 998MB.
    Please could anybody help me to resolve this problem
    Thanks and regards,
    Wilson

    Please, could anybody know about this issue??

  • Business Connector Developer 47 installation problem

    I wander why I have problem when trying to run Business Connector Developer 47.
    In the installation guide there is notthing specially written beside running BCDeveloperXpt47.exe and “ Follow the instructions of the SAP Business Connector Developer setup program.”.  I assume (and I got information) that “developer” can be on different host than “business connector”
    I am using the operating system XP(assuming this is ok +).
    When starting Start menu->  Programs->   SAP BC->   SAP-> Business Connector Developer4.7 notthing hapened.
    After starting C:\sapbc47\Developer\bin\integrator.bat from command prompt (this is the command under Business Connector Developer
    4.7 icon (in Windows Start menu->  Programs->   SAP BC->   SAP)
    I got messages:
    The system cannot find the path specified.
    The system cannot find the path specified.
    I got a hint and copied
    C:\Program Files\Java\j2re1.4.2_13 content
    to the empty
    C:\sapbc47\Developer\jvm 
    After starting C:\sapbc47\Developer\bin\integrator.bat
    the situation is better ( I get the developper screen) but no popup to log on to Business connector host
    in command prompt I have now following messages:
    Developer 4.7 Build 999
    java.lang.NullPointerException
            at com.wm.app.b2b.dev.DevConnectDialog.itemStateChanged(DevConnectDialog.java:253)
            at javax.swing.JComboBox.fireItemStateChanged(Unknown Source)
            at javax.swing.JComboBox.selectedItemChanged(Unknown Source)
            at javax.swing.JComboBox.contentsChanged(Unknown Source)
            at javax.swing.AbstractListModel.fireContentsChanged(Unknown Source)
            at javax.swing.DefaultComboBoxModel.setSelectedItem(Unknown Source)
            at javax.swing.JComboBox.setSelectedItem(Unknown Source)
            at com.wm.app.b2b.dev.DevConnectDialog.<init>(DevConnectDialog.java:210)
            at com.wm.app.b2b.dev.DevMainFrame.doConnect(DevMainFrame.java:759)
            at com.wm.app.b2b.dev.DevMain$1.run(DevMain.java:195)
            at java.lang.Thread.run(Unknown Source)
            at com.wm.ui.UiFrame$7.run(UiFrame.java:344)
    what could be wrong?

    Agasthuri Doss
    Thank you for idea.
    I restrarted machine but I do not have luck. Now I do not ¸even get the developper screen.
    What you mean by "Checking the Path". I will award you  if you help me more

  • SAPUI5 Development Environment Installation Issues

    Hi
    I am new to this development environment and am experiencing problems installing the Eclipse environment, the way I understand it once I have installed Eclipse I need to install UI5 Team and UI5 Tools  packages, I did manage to install the UI5 tools with out to many issues but the UI5 Team will not install and appears to be missing certain components that I have not been able to find. The message I get is below;
    Cannot complete the install because one or more required items could not be found.
    Software being installed: SAPUI5 ABAP Repository Team Provider 1.6.5 (com.sap.ide.ui5.team.feature.external.feature.group 1.6.5)
    Missing requirement: SAPUI5 ABAP Repository Team Provider 1.6.5 (com.sap.ide.ui5.team.feature.external.feature.group 1.6.5) requires 'com.sap.adt.fwk.ci.feature.group 0.20.1' but it could not be found.
    Could somebody point me in the direction where I can find a step by step detailed install for Eclipse and all components needed.
    Thanks

    please have a look at this document
    How to install a basic development environment for SAPUI5
    or
    follow Installation process for SAP UI5 Tools from
    SAPUI5 Tools - User Interface Add-On for SAP NetWeaver - SAP Library

  • SAP Business One Development Environment Installation Error

    Hi,
    I am having hard time installatin the SDK (B1DESetup_2.1)..
    I always get the same error:
         The installer has encountered an unexpected error... The error core id 2869.
    I am running it on a Windows 7 laptop and I tried to run it as admin and also using the compatibility mode
    I do not have SAP B1 installed locally (I do not have any copy of it)
    IAt the end, what I want to achieve id to develop an interface module to exchange data between my application and SAP B1 using SAP DI APIs
    Tnks for any help
    Edited by: erilive on Jun 30, 2010 4:34 PM

    Thanks for answering...
    The quick story is that we are developping an interface for a customer who have SAP B1 installed...
    We do not have SAP B1 installed locally.
    We need  to develop using this DI API and we will test with  the customer SAP B1server.
    So at the end, the quiestion is is it possible for me to develop using the interop.SAPBobsCOM.dll API only... I will connect to my customer SAP B1 using VPN...?
    Thanks.

  • SAP Business Connector Developer 48 Installation error

    Hi Experts,
    I have a problem when trying to install SAP Business Connector Developer 48.
    When I tried to start the Executable, then it's giving a popup window saying that "Please select another location to extract the installer file to:"
    I have tried to install by choosing another Location but it's giving same error
    Please suggest necessary steps to solve this error.

    Hi Juan,
    Thanks for quick response.
    I have tried to install by giving almost all locations but still giving same error.
    We are using Windows 2003 64 bit OS and Oracle 10g DB.

  • Crystal Reports Developer XI installation appears complete, but is not

    A client of ours has purchased Crystal Reports Developer XI, and we're having trouble getting the installation completed on their box.
    Everything installs as normal (we installed this at other clients), and the box requests a reboot.  After reboot, there is no indication that the install ever occurred, except for the new files in the "C:\Program Files\BusinessObjects" directory.  There is nothing in Add/Remove programs for it, nor is there anything in the start menu that would indicate it was ever installed.
    When attempting to re-install (which we've done 4 times now), the license key is already entered in for us, which to me means that the installation is at least partially talking to the registry, but never really finishing.
    We're performing the installation using administrator logins.  As I said, there are no errors indicating anything isn't working.  The box is a Win Server 2k3 box with SP2.
    TIA

    If this is XIR1 of windows 2003 SP1 or later you probably want to enable Micorsoft DEP for windows only and reboot.
    Also since you have a partial install on the HD you should delete the following registry keys hkey/localmachine/software/business objects and hkey/currentuser/software/businessobjects
    Also delete the following directories C:\program files\business objects and C:\program files\common files\3.0
    Then reinstall.
    Regards,
    Tim

  • PRCR-1079 Failed to start resource ora.rac.db - during installation

    Hi
    After successful installation of Grid Infrasturcture I proceeded with database installation on clusterware and at the stage when the installer was creating clone database I got the following errors ( this was my 2nd attempt and I got the same errors both the time ) :
    Errors:
    PRCR-1079 : Failed to start resource ora.rac.db
    ORA-01092 : ORACLE instance terminated. Disconnection forced
    ORA-00704 : bootstrap process failure
    ORA-00604 : error occurred at resursiive SQL level 2
    ORA-01578 : ORACLE data block corrupted (file # 1, block # 5505)
    ORA-01110 : data file 1:'+DATA/rac/datafile/system.256.799676855'
    Process ID : 23498
    Session ID : 63 Serial number 3
    CRS-2674 Start of 'ora.rac.db' on 'rac2' failed
    CRS-2632 There are no more servers to try to place resource 'ora.rac.db' on that would satisfy its placement policy
    There are no logs on that node (rac2)
    I am running Oracle Linux 5.4 64 bit
    As mentioned above this was my 2nd attempt afresh and I got the same errors both the times, please let me know what is the problem as the rac2 is replica of rac2 in VMWare.
    Thanks for your help
    Rgds
    T

    Hi
    I tried again for the 3rd time and go the same error again, this time I rebuilt the node 2 - Can someone ple ase help me with this issue why it keeps failing on node 2 at the same stage for the 2rd time in a row.
    Also please help me clone the database manually from node 1 to node 2 so I don't have to try to reinstall it again, there must be ways to do it
    Thanks for your help in advance
    Rgds
    T

Maybe you are looking for