Oracle 8i Personal path statement

Hello,
I've installed Oracle 8i personal, and Oracle Navigator -- but now I can not start any of my databases. I think that Navigator overwrote my old autoexec.bat file and as such the old path statements are no longer there.
I can not find another autoexec.xxx file, so assume that a backup was not created.
Can someone tell me what the path statement should be in the autoexec.bat file?
Thanks in advance!
mohammed

Listener is used to allow remote clients to connect to your local database.
Remote client connections to a local database is not supported with Oracle Personal edition.

Similar Messages

  • Errors in simple query in oracle 9i personal edition

    hi,
    i have oracle 9i personal edition release 9.0.1.1.1 - production.
    with it came sql*plus release 9.0.1.0.1 - production
    i have installed it on windows 98SE
    what i did is the following
    step 1:
    create type address_ty as object
    (street varchar2(50),
    city varchar2(50),
    state char(2),
    zip number);
    when i executed i got message "type created"
    step 2 :
    create table customer
    (cust_id number ,
    person address_ty);
    when i executed this i got message "table created"
    step 3 :
    insert into customer values
    (3,address_ty('xyz','abc','AP',4563));
    i get messsage "1 row created"
    step 4 :
    select cust_id,person.street from customer;
    i get error message .......
    select cust_id,person.street from customer;
    ERROR at line 1:
    ORA-00904: invalid column name
    i tried this example from the book "Oracle Complete Reference" from oracle press.
    what is the problem how to avoid it.
    i am a beginner help
    gopal

    hi! i'm not very sure, but your second field selected is person.street, do you have this field?
    why not try just select * from tablename, you should see the result.
    hope that helps.
    rgds.

  • SQLException - Win 98; Oracle 8i personal (8.1.5) JDBC Thin 1.2 driver

    Environment:
    Win 98; Oracle 8i personal (8.1.5) JDBC Thin 1.2.2 drivers
    Included in classpath: e:\oracle\ora81\jdbc\lib\classes12_01.zip;e:\oracle\ora81\jdbc\lib\nls_chaset2_01.zip;
    Included in path: e:\Oracle\Ora81\bin;e:\Oracle\Ora81\\jdbc\lib;
    code snippet used:
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    dbconn = DriverManager.getConnection( "jdbc:oracle:thin:@127.0.0.1:1521:ORCL","scott","tiger" );
    following runtime error occurs:
    java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:114)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:156)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:269)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:210)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:251)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:224)
    at java.sql.DriverManager.getConnection(DriverManager.java:457)
    at java.sql.DriverManager.getConnection(DriverManager.java:137)
    at OracleTest.main(OracleTest.java, Compiled Code)
    Any suggestions anyone?

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Vij:
    Environment:
    Win 98; Oracle 8i personal (8.1.5) JDBC Thin 1.2.2 drivers
    Included in classpath: e:\oracle\ora81\jdbc\lib\classes12_01.zip;e:\oracle\ora81\jdbc\lib\nls_chaset2_01.zip;
    Included in path: e:\Oracle\Ora81\bin;e:\Oracle\Ora81\\jdbc\lib;
    code snippet used:
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    dbconn = DriverManager.getConnection( "jdbc:oracle:thin:@127.0.0.1:1521:ORCL","scott","tiger" );
    following runtime error occurs:
    java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:114)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:156)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:269)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:210)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:251)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:224)
    at java.sql.DriverManager.getConnection(DriverManager.java:457)
    at java.sql.DriverManager.getConnection(DriverManager.java:137)
    at OracleTest.main(OracleTest.java, Compiled Code)
    Any suggestions anyone?<HR></BLOCKQUOTE>
    Vij,
    Assuming that Personal Oracle is up and running, you should check that the listener is running and listening on the port you are using.
    You can check the status with the following command (from the DOS prompt): lsnrctl status
    If the listener is not running start it with this command: lsnrctl start listener
    You can also have it start automatically by modifying the registry entry LISTENER_STARTUP to "AUTO"
    (HKEY_LOCAL_MACHINE\Software\ORACLE\HOME0)
    Hope this helps
    Thomas Risberg
    null

  • Oracle 8i Personal Install corrupts Sun Java 2 development environment

    I encountered no errors during installation of Oracle 8i Personal for Windows/NT; and the sample database appears fully functional.
    However, the Sun Java 2 development kit (JDK 1.2) that I use for other projects is no longer functional. The registry appears to have been corrupted by the Oracle 8i installation. Now, whenever I attempt to run a Java 2 program I encounter the error:
    "Registry key 'Software\JavaSoft\Java Runtime Environment\CurrentVersion'
    has value '1.1', but '1.2' is required."
    Does anyone have suggestions on how to cure this problem?
    null

    Although I installed 8i Lite rather than personal Oracle 8, my experience was unlike yours. My jdk2 never stopped working - although, when I think about it, I did have to immediately fix a bunch of problems I visually detected after the install.
    After the installation, my Registry (on Win95) remained set correctly to version 1.2 of the javasoft runtime environment.
    My autoexec.bat file however was badly trashed by the installer - my multiple classpath statements were all combined into one monolith at the end.
    I hate products that silently overwrite carefully crafted key system files with no prior warning and no automatic backup process.
    After an hour or two recovering the autoexec and setting environment variables for jdk 1.2, everything is fine with my jdk setup.
    In the NT world, I can't help you with recovering your jdk2 environment. However, I'd check your environment settings on NT very carefully to ensure the installer hasn't wreaked havoc with them.
    You can also try re-installing the jdk2 run time environment from sun's web site.
    Good luck.

  • Connection to Oracle 8i personal default DB

    Hi I am trying to connect to the default database on my laptop whcih is running Oracle 8i personal.
    I use
    connection = DriverManager.getConnection(
    "jdbc:oracle:oci8:@", user, password);
    for my connection, but get the following error:
    Failed to establish connection java.lang.unsatisfiedLinkError no ocijdbc9 in java.library.path
    Does anyone know how to solve this?
    Cheers
    Andreas

    You don't have the Oracle Client software installed :-)
    If you don't want to use it, you need to specify a different protocol which does not need the client software:
    jdbc:oracle:thin:@(hostname):1421:(sid)
    Thomas

  • 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

  • Oracle 8i Personal Edition Installation on Windows ME

    Hi,
    I am assuming that Oracle 8i Personal Edition for Windows 98 will work on Windows Me too. First of all, is this assumption valid ? If yes, then I am facing a problem right at the start of the installation. After specifying the File location path (For source path, the default is 'C:\Program Files\Oracle\STAGE\products.jar'. I have not changed this. For destination path,(oracle home path), I am specifying it as 'C:\Program Files\Oracle'. After this I get an error as follows - 'There was a problem in accessing the staging area. Please make sure the specified values for 'Source' and 'Destination' are valid.'
    I am stuck up at this point. Please let me know what could be the problem.

    I had this same problem with this same installation on ME. After a smooth installation with PO 8, I suspected spaces in path names, since the 8i install appears to be java based. If you go into windows regedit (Win ME does not read from autoexec.bat), and search for oracle home, and all 'home' paths you have tried specifying in the initial 8i install interface, upon editing your oracle home path, you may find a space character discreetly tucked at the end of that path name. What's more, just correcting your paths through regedit may only temporarily solve your problem. Also search/correct your prompt. A quick verification of this is if, from a dos window, your prompt looks like:
    C:\> _
    (notice the space between the > and _ characters) I think this is either a MS bug, or an image disk install bug, and suspect, after reading of your same problem, it comes from MS.
    Hope this helps,
    KJ
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Anjali Vipinkumar ([email protected]):
    Hi,
    I am assuming that Oracle 8i Personal Edition for Windows 98 will work on Windows Me too. First of all, is this assumption valid ? If yes, then I am facing a problem right at the start of the installation. After specifying the File location path (For source path, the default is 'C:\Program Files\Oracle\STAGE\products.jar'. I have not changed this. For destination path,(oracle home path), I am specifying it as 'C:\Program Files\Oracle'. After this I get an error as follows - 'There was a problem in accessing the staging area. Please make sure the specified values for 'Source' and 'Destination' are valid.'
    I am stuck up at this point. Please let me know what could be the problem.<HR></BLOCKQUOTE>
    null

  • Oracle 9i Personal Edition for Windows 98

    I am having problems installing Oracle 9i Personal Edition for Windows 98. The install is hanging at the same place every time.
    The installer works fine, but at the end of the install, when the Oracle Configuration Assistant tries to create the new database, the system "hangs". On a Gateway PC, there were fatal exceptions about VxD and vVMM. I finally had to power down the PC. I tried again and got the same error.
    On a Compaq PC, when the Configuration Assistant started, it tried to access my floppy drive and opened a console window with "Abort, Retry, Fail". I chose "Abort" and the configuration continued, but the system hung when trying to start the Oracle instance.
    I am evaluating different software packages and need to install Oracle in order to test them.
    Thanks for your help.

    if you go to iSelfSchooling.com, you will find Oracle Installation Issues on Windows. It gives a list of "default usernames and passwords" and also states that you can leave the HOST name blank to get at the starter database.

  • Problem with oracle 9i personal and thin driver

    hi all,
    this is the code i test the connection of thin driver and oracle 9i personal database.
    but i got the error below, could someone tell me where i did wrong.
    thank you...
    import java.sql.*;
    import java.math.*;
    import java.io.*;
    import java.awt.*;
    import oracle.jdbc.driver.*;
    class JdbcTest
      public static void main(String arg[])
        try
          // load oracle driver
          DriverManager.registerDriver(new oracle.jdbc.OracleDriver());
          //connect to the local database
          Connection connection = DriverManager.getConnection
                                 ("jdbc:oracle:thin:@myhost:1521:ORCL","scott","tiger");
          Statement statement = connection.createStatement();
          ResultSet resultset = statement.executeQuery("SELECT ename FROM emp");
          //print the name out
          while(resultset.next())
            System.out.println(resultset.getString(1));
          //close the resultset, statement, and connection
          resultset.close();
          statement.close();
          connection.close();
        catch(SQLException sqle)
          System.err.println(sqle);
    }  C:\CODE-JDBC\ORACLE\TEST-CONNECT>java JdbcTest
    java.sql.SQLException: Io exception: The Network Adapter could not establish the connection

    Replace this line:
    DriverManager.registerDriver(new racle.jdbc.OracleDriver());with this one:
    Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();

  • Forms 6.0/Oracle 8i Personal

    I have Forms 6.0 installed from Developer 6.0 CD on a Windows 98 desktop. I recently installed Oracle 8i Personal Edition. I had to install 8i in a new Oracle Home because the UOI is not compatible with the installer used for Developer 6.0. I am now trying to connect to the Personal Oracle 8i database from the Forms Builder 6.0 . Is this possible? I have tried editing the tnsnames.ora file in the oracle home where the Forms 6.0 lives, but haven't had any luck.

    It is easier to use developer 6i. 8i and 6i can find each other without having to change anything in the listeners or tns.names.
    Greetings Huub Bos
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Tani Converse ([email protected]):
    I have Forms 6.0 installed from Developer 6.0 CD on a Windows 98 desktop. I recently installed Oracle 8i Personal Edition. I had to install 8i in a new Oracle Home because the UOI is not compatible with the installer used for Developer 6.0. I am now trying to connect to the Personal Oracle 8i database from the Forms Builder 6.0 . Is this possible? I have tried editing the tnsnames.ora file in the oracle home where the Forms 6.0 lives, but haven't had any luck. <HR></BLOCKQUOTE>
    null

  • How To Find Oracle Home Directory Path...

    Hello,
    I am working on deployment of java web service on Oracle Application Server(LINUX) 10g, EBS - R12.
    I am working on other system and i want to deploy web service remotely on application server.
    And i am not getting the oracle home directory path. I want to find the home directory path remotely.
    so suggest me how to find out path of that.
    or weather i have to install jdevloper on server system and than i have to deploy it,
    or any other alternative way is available.
    Reply as soon as possible......

    Thanks for your reply.
    It's precisely the registry key which got tampered, and there's no ORACLE_HOME environmental variable(Or that too is tampered)
    Now,how to set it to one of the Oracle home directories?
    Regards,
    Bhagat
    !!!!!!!!!!!!!!!!!!!!

  • 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

  • Oracle 8i Personal Edition

    I NEED to download Oracle 8i Personal Edition. Obviously, it's been yanked from the site. Are there any other places I can download this? Or any other places I can get a hard copy. This is extremely urgent! Someone help, please.

    Here you can still find the software you are looking for:
    http://otn.oracle.com/software/htdocs/devlic.html?/software/products/8i_personal/htdocs/winsoft.html

  • Oracle 9i Personal Edition

    I REALLY need to get this installed, see previous message below. Can anyone help.

    I downloaded Oracle 9i Personal edition from Oracle.com.
    Installed the same on Win Me with a starter database.
    I am not able to open the database since it asks me to enter a password which i've never entered.
    I am not able to create a session. The moment I try to create a session on SQL, the database starts opening but i cannot get further since it asks for the password.
    Please Help. Try using the generic username of scott & the generic pw of tiger. Hope this helps Hi,
    Try this from dos prompt
    c:\> set oracle_sid=<sid_value>
    c:\> sqlplus system/manager
    Can you elaborate what you meant when you say "the database starts opening" ? What is the error number and error message you are getting?
    HTH

  • 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

Maybe you are looking for