How to connect to Oracle 8i Personal Edition from another app like TOAD?

I downloaded Oracle 8.1.7 Personal Edition; and the download went like a breeze.
I installed Oracle and can connect to the database using SQL*Plus without specifying Host Name.
I am very much familiar with TOAD (Tool for Oracle Application Developer). But I am unable to connect to Oracle 8.1.7 Personal Edition database from TOAD. I get a ORA-12541: TNS:no listener error when I give the global database name as the database name.
Can anybody help me? Your help will be appreciated very much.

SQL*PLus does not use the listener to connect to Oracle8i Personal Edition. That is why you are able to connect with SQL*Plus and not TOAD when the listener is not started.

Similar Messages

  • How to connect to ORACLE 10g Express Edition using struts?

    HI! There
    I am using Oracle Jdeveloper as IDE, JBoss as application server, Oracle 10G Express edition as DBMS. As I am new to Struts & Jboss, so Can anybody tell me that How to connect to Database? Please also give Struts-config.xml datasource config too.
    If someone can give a set of codes to enter and retrieve the data to/from database it will be really help full for me. Well connectivity with any version e.g. 9i, 10g, 10g XE will do......
    Thanks

    Well I have already configure a datasource in struts-config.xml as Stated below:
    <data-sources>
    <data-source>
    <set-property property="autoCommit" value="false"/>
    <set-property property="description" value="Data Source Config. for SMS"/>
    <set-property property="driverClass" value="oracle.jdbc.OracleDriver"/>
    <set-property property="maxCount" value="4"/>
    <set-property property="minCount" value="2"/>
    <set-property property="password" value="password"/>
    <set-property property="url" value="jdbc:oracle:thin:@127.0.0.1:1521:XE"/> <set-property property="user" value="sms"/>
    </data-source>
    </data-sources>
    Now the Only problem That I am facing is how to look up this data source from a Java file of Model layer.
    Please Guide me further

  • How can I print directly print a report from another app?

    Hi, Can I print a report (printer schedule immediate) passing parameters from another application? Like a html page!
    Thanks a lot. R.

    I can't use the url (for example):
    http://HOST:9704/xmlpserver/servlet/scheduler?ujobname=test_print.xdo&d_printerd_p_gname0=direct&show_conf_page=true&d_method0=d_printer0&job_locale=it_IT&save_output=off&mode=schedule&save_data=off&ujobdesc=test_print.xdo&stype=simple_immediate&_xschurl=_xpt%3D%26WebDoc_Id_Page_Id%3D34132_233%26_xdo%3D%2Ftest_print%2Ftest_print.xdo%26_xpf%3D%26Store_Timezone%3DEurope%2FRome%26_xf%3Dpdf&report_url=%2Ftest_print%2Ftest_print.xdo&submitted=true&d_printerd_p_name0=bridgept1&d_printerd_copy0=1
    ?

  • How can I login in to I cloud from another device Like my I pad.

    Lost my phone and need to locate it using my I Pad.

    Download the free Find My iPhone app to your iPad.  Sign in on the app with the iCloud ID your phone was using to track it.

  • Oracle 9i Personal Edition Lean Install

    I want to install Oracle 9i Personal Edition on a Windows Box(NT/2000/XP). I would like to make it as lean as possible (ie. minimal disk space, minimal services, etc). The databases deployed on this would have tables, procs, functions, views, packages, sequences, users & roles. Any tips on how to minimize what is installed? tia.

    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

  • 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

  • How to use log in to Oracle 8i personal edition SQL Plus?

    Hi, this is my first time using Oracle 8i personal edition. But after installation, I was told to enter
    User Name, password and host string in order to use SQL Plus
    But I have no idea what to enter for the above three
    By the way, I was prompted with the following message after installation,
    Global Database Name: Oracle
    SID : Oracle
    Password : ******
    database name : People
    system identifier : People
    system account : manager

    hi to connect to SQL plus write the following:
    user name: scott
    password : tiger
    host string : leave it empty if it requires again then write orcl
    bye

  • 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

  • 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.

  • Oracle 9i Personal Edition Download Problem

    Hi there,
    I'm currently attempting to download Oracle 9i Personal Edition, however upon clicking on the file link, I'm being constantly presented with the login page (even after having logged in). I checked my browser (MSIE 6) and cookies are enabled. Trying the same procedure for other files yielded the same unsuccessful results. Can anyone help please (my username is [email protected]). Thanks in advance!
    Regards,
    Johan

    Download it again. I had the same problem the first time. It happens when there is a problem in your internet connection. The second time I downloaded it, it worked fine.
    Hope this helps.

  • Oracle 10g Personal edition as a Client Database

    Hi, Our enterprise application runs as in both Online and offline mode. For offline mode it uses Microsoft accesss as Data Store. Now we want to use Oracle 10g Personal Edition as Our client database, so that we can use stored procedure and have code base for both server and client. Oracle XE can not be used because Oracle XE is not supported by Oracle.
    Please suggest what is the best way to deploy Oracle PE to get smallest footprint and best performance. It is alright to use PE as client DB or it is too much for offline application.
    Any suggested customizations or Alternatives. We have rules out Oracle Database lite because it doesn't support Pl/ SQL SP. Thanks.

    Note that Personal Edition is actually designed for Developers. It includes all options to the Enterprise Edition (except RAC) but is limited by license agreement to being used by one named person. You can not legally provide data from Personal Edition through direct connection electronically (eg: a web or app server) to several people. You also can not say "John is using it now, and when he is off, Fred will use it."
    The best and smallest footprinit is XE, but (as you say) you can not purchasse support from Oracle. Next is Standard Edition 1, with a Standard Edition software install (SE and SE1 are the same s/w) and a custom-created DB.

  • Oracle 8i Personal Edition Replacement?

    I was looking to download Oracle 8i Personal Edition for a class I am taking, but I don't see a link to do that anywhere. Is there a version 9i replacement for the 8i Personal Edition?
    The only possible link I could find was to a 3 disk (CD)download that was available through the link labeled: "Oracle9i Database Enterprise/Standard/Personal Edition for Windows NT/2000/XP Pro" off the web page at: http://otn.oracle.com/software/products/oracle9i/content.html
    This seems to large of a download for the personal edition, so this leads me to believe that this is not the right link.

    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.

  • Oracle 8i Personal Edition for windows 98

    I have received the personal edition from
    Oracle.
    I did the installation which completed without errors.
    Then, I went to start up the database. The
    database started, but would not mount.
    The error that I got was...
    Ora-00202: controlfile:
    'c:\oracle\ORADATA\orcl\control01.ctl'
    ora-27041: unable to open file
    osd-04002: unable to open file
    o/s-error:(OS 3) The system cannot find the path specified.
    ora-205 signaled during: Alter database mount exclusive...
    archiving is disabled.
    What I discovered was that the control file
    it was looking for control01.ctl
    was not on the cd.
    Any idea how to get rid of this problem??
    If I need this control file, what is it for
    and where would I get it??
    Thanks for your help...
    Merv Engel

    Hi,
    I figured it out.
    For some reason, when I installed the "typical" install, it failed.
    But, when I did the Database install only,
    which installed the database properly, then
    did the "typical" install which installed the
    additional stuff (sqlplus, etc.), it worked.
    Thanks for your help, though.
    Please see my other problem regarding using
    the developer tools.

  • 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

  • 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

  • Printer Software Installer has stopped working

    Product: HP Laser Jet M1005 MFP OS: Windows 7, 64-bit Notebook ACER , Aspire 5349, Intel Celeron CPU B800 @ 1.50 GHz (new notebook, old printer - printer worked well on Windows XP) I downloaded driver ljM1005-HB-pnp-x64-en. Driver had been extracted

  • Error message 21

    I am unable to synch from i-tunes to my Nano. Error message 21 - still uninstalling the device after 2 days. I cannot see the i-pod in the Device Manager. i-pod starts to synch, then stops

  • How many CD/DVD in the box?

    I have recently purchased iMac G5 1.9GHz. I want to make sure I received everything that Apple packed in the box. Can anybody tell me how many CD's/DVD's come in the box and what is on these discs. Thanks. Dual 2.5 GHz G5; 23 Cinema Disp; 667 Mz TiBo

  • Speakers only work when the headphones are plugged in

    I have an HP Pavilion dv6-6163cl.  I purchased it about 1 year ago.  I use windows 7 and have not altered anything.  My internal speakers stopped working about a month ago.  I uninstalled the IDT audio driver and reinstalled it with the updated drive

  • Highlighting not working

    Hello, I am using Acrobat Pro V11.0.10 and highlighting is not working. When I select OCRed text the text does not get the overlaying color but it does get a note like icon. I have tried to adjust the highlighting color in the settings but still no s