ISQL * Plus..Need help

Hello,
I am very new to Oracle 9i. I have completed the installation and I am trying to access the ISQL*Plus interface but cannot locate it(don't know how). Can someone help and give me the steps?
Thanks for your assistance.

Open up a web browser, and enter the URL to start iSQL*Plus in the form:
http://[machine_name][:port]/isqlplus
So, if your machine is called "mymachine" and the Oracle HTTP Server is installed on port 80, use:
http://mymachine:80/isqlplus
Alison

Similar Messages

  • Big problem with webcam vista plus need HELP !!

    Hello Everyone !
    I own Creative WebCam Vista Plus VF0090.
    My system is windows 7 64 bit and i cant install any driver for my cam to work.
    Please help... thanks.

    Hi Itay84,
    Sorry but I don't think there is driver for your webcam. Please refer to the driver availability chart for updates.

  • Isql*plus login

    i have installed oracle 10g and i have a problem with the isql*plus login because after 20 mins that i log in it is asking for me to log in again which i find very frustrating...is there a way to disable the 20 mins login timeout?

    Setting the Session Time Out
    Timing out iSQL*Plus sessions helps to reduce machine load and to maximize resources. The time out interval is set by the session-timeout element. It defines the time a session can be idle before it is expired.
    You need to stop the iSQL*Plus Application Server to make changes to the session-timeout element. You can edit the web.xml configuration file to change the timeout interval. The web.xml file is located in the directory:
    $ORACLE_HOME/oc4j/j2ee/oc4j_applications/applications/isqlplus/isqlplus/WEB-INF
    In the web.xml file, search for the <session-timeout> element inside <session-config>. The syntax of the line to change in the configuration file is:
    <session-config>
    <session-timeout>15</session-timeout>
    </session-config>
    Where the value is the number of whole minutes of idle time before the session times out. It has a default value of 15 minutes. It can be set to any value from 1 to 1440 minutes. It can also be set to never expire by entering a negative value such as -1. It should not be set so small that users do not get a chance to enter their scripts. When a user tries to use a timed out iSQL*Plus session, the Login screen is displayed and the user is prompted to log in again. The following error is displayed: SP2-0864: Session has expired. Please log in again.

  • Help using isql*plus

    at the university we use isql*plus in the web browser, i installed oracle 10g and i have no idea how to use it :s
    how can i access iSQL*plus using my web browser??
    please, help!!

    how can i access iSQL*plus using my web browser??1. start iSql*plus on the server : (as oracle user)$ isqlplusctl start2. on your browser :http://<machine name or IP address>:<port>/isqlplusPort is normally 5560, but you can check out portlist.ini in $ORACLE_HOME/install.

  • Need help implimenting PLUS ldf in c++ via XMP sdk

    I'm apparently suffering major brainstem bitrot and generating lots of brain coredumps, and I need help.
    I'm using the XMP toolkit sdk 5.1.2 in c++ under gcc on Debian to impliment embedding PLUS ldf licensing metadata (reference: http://ns.useplus.org/LDF/ldf-XMPReference ) into images.
    I have no problems generating compliant plus ldf xmp in code for everything EXCEPT for single line detail entries like "<rdf:type rdf:resource="plus:LicenseeDetail"/>" in several places in the ldf specification, viz:
    <plus:Licensee>
       <rdf:Seq>
         <rdf:li>
              <rdf:type rdf:resource="plus:LicenseeDetail"/>
              <plus:LicenseeID>http://plus-id.org/AAA-987</plus:LicenseeID>
              <plus:LicenseeName>ABC Advertising Agency</plus:LicenseeName>
         </rdf:li>
       </rdf:Seq>
    </plus:Licensee>
    I can generate the appropriate text in memory then parse that to get an appropriate SXMPMeta and merge that, but I would really like to be able to properly generate the proper xmp in code, and would really appreciate any help preventing further brainrot!
    I'm certain it's both simple and trivial, but I now can't see the trees because of the forest ... Thanks

    Hi,
    I'm not a XMP expert but I've been working for some years with Semantic Web technologies. My understanding is that XMP is a subset of RDF (one of the main pieces of the Semantic Web) so I will try to make my contribution to this problem from there.
    Consequently, looking at your problematic piece of XMP:
    <plus:Licensee>
       <rdf:Seq>
         <rdf:li>
              <rdf:type rdf:resource="plus:LicenseeDetail"/>
              <plus:LicenseeID>http://plus-id.org/AAA-987</plus:LicenseeID>
              <plus:LicenseeName>ABC Advertising Agency</plus:LicenseeName>
         </rdf:li>
       </rdf:Seq>
    </plus:Licensee>
    I can say that it isn't valid RDF so it shouldn't be proper XMP. This can be confirmed looking at the example for the property plus:Licensee available from the specification (http://ns.useplus.org/LDF/ldf-XMPSpecification#Licensee):
    <plus:Licensee>
       <rdf:Seq>
          <rdf:li rdf:parseType="Resource">
             <rdf:type rdf:resource="plus:LicenseeDetail"/>
             <plus:LicenseeID>http://plus-id.org/AAA-987</plus:LicenseeID>
             <plus:LicenseeName>ABC Advertising Agency</plus:LicenseeName>
          </rdf:li>
       </rdf:Seq>
    </plus:Licensee>
    I have marked in bold where the problem is. Your piece of XML is missing the rdf:parseType="Resource" construct. I will explain why this is necessary from what I know from RDF. RDF is based on a graph model. There are resources, which correspond to graph nodes and represent the things the RDF metadata is talking about, and properties, which correspond to graph edges and represent the attributes and relations used to say things about the resources.
    In RDF the convention is to use lowercase names for properties. This doesn't seem to be the convention in XMP so we must take a closer look at the XMP piece in order to identify what parts correspond to resources and to properties. From the LDF specification we know that plus:Licensee correspond to a property so it should link to a resource, in this case rdf:Seq (more specifically it is an anonymous resource (no id provided) of type rdf:Seq). Your example should have some additional markup before plus:Licensee, surely the resource that represents the licensee about which we are specifying the licensee using the plus:Licensee property.
    Now, if we continue from the resource of type rdf:Seq, there is the rdf:li property (lower case as it is directly reused from the RDF specification). The problem now is that if we look directly inside rdf:li property we find rdf:type, plus:LicenseeID and plus:LicenseeName. It is clear that rdf:type (lowercase) is a property and from the LDF specification we can see that the other two also correspond to properties. Therefore, there is the problem. We have a property (rdf:li) pointing to three properties (rdf:type,...) so we are breaking the graph data model: nodes (resources) are connected through edges (properties) that link two nodes.
    This is not the case for the example in the LDF specification. The rdf:parseType="Resource" constructs is a shortcut for:
    <rdf:li>
       <rdf:Resource>
             <rdf:type rdf:resource="plus:LicenseeDetail"/>
             <plus:LicenseeID>http://plus-id.org/AAA-987</plus:LicenseeID>
             <plus:LicenseeName>ABC Advertising Agency</plus:LicenseeName>
       </rdf:Resource>
    </rdf:li>
    It basically says that the following properties should be parsed as being connected to an anonymous resource. In order to make it clearer, it is helpful to look at the graph behing that markup. For instance, you can use the RDF2SVG service and render the graph behind the example from the specification (which I have make available from a custom URL):
    http://rhizomik.net/redefer-services/render?rdf=http://rhizomik.net:8080/html/~roberto/tmp /ldf-simple-example.rdf&format=RDF/XML&mode=svg&rules=http://rhizomik.net:8080/html/redefe r/rdf2svg/showgraph.jrule
    I hope all this makes it clearer.
    Best,
    Roberto García
    http://rhizomik.net/~roberto/

  • ISQL*Plus Load Script component needed..

    Hi all,
    Like to find out if anyone knows how to implement a text file loading mechanism from a jsp. It is similar to the iSQL*Plus script loading function:
    1) User connects to the server from client terminal.
    2) Browse for text file in client terminal.
    3) Load content of text file into a textarea on a jsp.
    What technology can be used? Java bean? Servlet? Any guide, advise or sample code would be appreciated.
    Thank you!

    Have you had a look at Application Express? The SQL Worksheet component sounds like what you're looking for. It can't run SQL*Plus scripts, but it can execute single SQL and PL/SQL statements. It can load/save 'scripts' to the database too. It might be even better for your needs. Web based, free ...
    http://otn.oracle.com/apex
    You gave me a laugh there with the spellchecker bit. A good Sheffield sense of humour. Nice one.
    Alison

  • Help to start iSQL*PLUS and OEM services

    Here is what I did in trying upgrade 10.1 to 10.2 on Windows:
    1. use Oracle Universal Installer installed 10.2 in a separated ORACLE_HOME;
    2. run pre-upgrade assistant (utlu102i.sql)
    3. run Net Configuration Assistant to congired listner
    4. run DBUA ( however message shows that database already upgraded)
    At this point, new instance is up. new listner is working, but iSQL*PLUS and oem services didn't even be recognized by OS.
    From Universal Installer, I saw iSQL*PLUS and OEM were installed. What I am missing here in order to start services of iSQL*PLUS and OEM?

    Well, the instance is running properly. sqlplus also works fine. Because there is no new OEM service available if you look at Services list, how it could be meaningful to connect to OEM through a browser? As fact, browser can not connect to OEM.
    Do I need to reinstall 10.2?

  • Need help!! I don´t remember my security questions nor have I a rescue email, plus whenevr I try I can´t seem to contact support, as it doesn´t accept my phone number, probably because I live out of the USA!!!

    Need help!! I don´t remember my security questions nor have I a rescue email, plus whenevr I try I can´t seem to contact support, as it doesn´t accept my phone number, probably because I live out of the USA!!!

    Hi bmwertner,
    Welcome to the Support Communities!
    If you require additional assistance with this, click on the link below for guidance:
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Cheers,
    Judy

  • (Help)Can't open  iSQL*Plus in the server?

    I want to run iSQL*Plus in the localhost.And my oracle DB server is in UNIX.
    So URL:
    http://192.168.151.100:1521/isqlplus/
    But I don't open it!
    So How to get it.
    Thanks in advance!
    Message was edited by:
    Hansen

    Have a look at the contents of portlist.ini which should be located in your {Oracle Home}/install folder.
    This lists the ports that have been set up for listening on for each part of Oracle.

  • Problems starting iSQL PLUS service on Windows XP

    Dear Forum,
    I installed oracle 10g for the first time on Win XP. The Installtion-Process was fine. Now I'm not able to iSQL Plus, beacause the iSQL service in the administration area does not start properly. The status always says that it is starting unfortunately with no success.
    Need help!
    Thanks in advance
    sportmeier

    hi
    i was wondering if and how you solved this error
    i have the same problem now
    thanks

  • ISQL*Plus - How to use it?

    I don't have any kind of database installed in my PC nor do I intend to do so. I want to use SQLPlus on a remote database. People here mentioned I could do that with iSQLPlus.
    I went to the following site http://www.oracle.com/technology/obe/obe9ir2/obe-mng/isqlplus/isqlplus.htm.
    It mentions that a database installation is needed to run iSQLPlus. Then one of the guys in this forum mentioned that a database installation is not needed.
    If anyone has successfully used iSQLPlus please help me set it up.

    Hi,
    You can use this links:
    - [Introduction to iSQL*Plus, 1 of 3 |http://download.oracle.com/docs/html/A88826_01/ch1.htm]
    - [Configuring iSQL*Plus, 1 of 8 |http://download.oracle.com/docs/html/A88826_01/ch2.htm]
    - [The iSQL*Plus User Interface, 1 of 4 |http://download.oracle.com/docs/html/A88826_01/ch3.htm]
    - [Using iSQL*Plus , 1 of 9 |http://download.oracle.com/docs/html/A88826_01/ch4.htm]
    You can also use SQL Developer (it's free) this tool provides a graphical interface so users can browse the database, run SQL, PL/SQL and SQL*Plus statements, execute SQL scripts, and edit and debug PL/SQL statements, and much more...
    To download please refer to:
    - http://www.oracle.com/technology/products/database/sql_developer/files/what_is_sqldev15.html
    Cheers ;)
    Francisco Munoz Alvarez
    www.oraclenz.com

  • ISql*plus Crashes all the time

    Hi ,
    I have installed Oracle10G in Wingows2003 server and created a database. My iSql*plus service crashes after every couple of hours and I need to restart it. Is there any bug with isqlplus on Windows ?
    Thanks,
    Asha

    Are there any errors in the event log?
    Are there any errors in the iSQL*Plus logs? The iSQL*Plus log file is written to:
    $ORACLE_HOME/oc4j/j2ee/isqlplus/application-deployments/isqlplus/application.log
    The iSQL*Plus Help log file is written to:
    $ORACLE_HOME/oc4j/j2ee/isqlplus/application-deployments/isqlplushelp/application.log
    You could try setting the iSQL*Plus error logging level to something higher than the default to see if there are any other errors:
    http://download-west.oracle.com/docs/cd/B12037_01/server.101/b12170/ch3.htm#sthref454
    Alison

  • ISql*Plus works well, but sqlplus throws ORA-12560. Why?

    I installed Oracle DB 10.2.0.1 on Windows XP. After the installation, everything works like clockwork. ... well, until I installed Oracle Application server 10.1.2.0.2.
    For the most part, it still works fine. But now, whenever I run sqlplus from command line, I get ORA-12560: TNS:protocol adapter error. I can still connect using the same login from iSql*Plus without any problem. Why?
    Now I'm supposed to cd into a directory, fire off sqlplus and run a sql script. How do I do this in iSql*Plus?
    Any help? Thanks,
    -M

    Thanks for the replies. I got the idea. I need to set
    those variables myself, although I personally think
    the installer should take care of that during
    installation.
    Now, out of curiosity, why did iSql*Plus never have
    the problem even though I didn't have any those
    variables set in my environment?No idea why those aren't set automatically, but they aren't, as you found out. :)
    iSQL*Plus is a web based service, and I believe it uses JDBC, not straight OCI calls.

  • Oracle 10g installation ora 12154 i really need help anyone

    history: reinstallation, can't pass ora 12154; system windows xp sp2 problem ora 12154
    Destination Folder: L:\oraclexe\
    Port for 'Oracle Database Listener': 1521
    Port for 'Oracle Services for Microsoft Transaction Server': 2030
    Port for HTTP Listener: 8081
    My friend, I believe you created a mess by Installing Oracle 10g Enterprise with your DHCP enable in Windows.
    There are only 2 options if you want to install Oracle 10g Enterprise on Windows.
    1. You install it using Static IP or not connected to network
    2. You install Microsoft Loopback, it is a virtual Network driver and this should be assigned as your primary Network driver instead of your current Network.
    So if you don't want any headache, the easiest way is uninstall your Oracle 10g, disable the DHCP and use static instead, then install again. that will work for sure.
    Don't try to play with the listener and everything because you will get into deeper and deeper problem that end up into frustration :(
    cheers
    Edited by: Chubbyd4d on May 19, 2009 12:58 PM
    Destination Folder: L:\oraclexe\
    Port for 'Oracle Database Listener': 1521
    Port for 'Oracle Services for Microsoft Transaction Server': 2030
    Port for HTTP Listener: 8081
    My friend, I believe you created a mess by Installing Oracle 10g Enterprise with your DHCP enable in Windows.
    There are only 2 options if you want to install Oracle 10g Enterprise on Windows.
    1. You install it using Static IP or not connected to network
    2. You install Microsoft Loopback, it is a virtual Network driver and this should be assigned as your primary Network driver instead of your current Network.
    So if you don't want any headache, the easiest way is uninstall your Oracle 10g, disable the DHCP and use static instead, then install again. that will work for sure.
    Don't try to play with the listener and everything because you will get into deeper and deeper problem that end up into frustration :(
    cheers
    Edited by: Chubbyd4d on May 19, 2009 12:58 PM
    clean start
    ================================================================================================================
    Output generated from configuration assistant "Oracle Net Configuration Assistant":
    Parsing command line arguments:
    Parameter "orahome" = N:\oracle10g
    Parameter "orahnam" = OraDb10g_home1
    Parameter "instype" = typical
    Parameter "inscomp" = client,oraclenet,javavm,server,ano
    Parameter "insprtcl" = tcp,nmp
    Parameter "cfg" = local
    Parameter "authadp" = NO_VALUE
    Parameter "nodeinfo" = NO_VALUE
    Parameter "responsefile" = N:\oracle10g\network\install\netca_typ.rsp
    Done parsing command line arguments.
    Oracle Net Services Configuration:
    Profile configuration complete.
    The information provided for this listener is currently in use by other software on this computer.
    Listener start failed. Listener may already be running.
    Listener configuration complete.
    Default local naming configuration complete.
    Oracle Net Services configuration successful. The exit code is 0
    Configuration assistant "Oracle Net Configuration Assistant" succeeded
    ================================================================================================================
    Output generated from configuration assistant "iSQL*Plus Configuration Assistant":
    iSQL*Plus 10.1.0.2.0
    Copyright (c) 2004 Oracle. All rights reserved.
    Starting iSQL*Plus ...
    iSQL*Plus started.
    Configuration assistant "iSQL*Plus Configuration Assistant" succeeded
    ================================================================================================================
    Output generated from configuration assistant "Oracle Database Configuration Assistant":
    Configuration assistant "Oracle Database Configuration Assistant" failed
    ================================================================================================================
    Output generated from configuration assistant "Oracle Database Configuration Assistant" (attempt 2):
    Configuration assistant "Oracle Database Configuration Assistant" failed
    ================================================================================================================
    Output generated from configuration assistant "Oracle Database Configuration Assistant" (attempt 3):
    Configuration assistant "Oracle Database Configuration Assistant" failed
    install microsoft loop back adapter okay
    ip 10.10.1.1
    255.255.255.0
    still ora 12154
    disable dhcp client on services.msc
    still ora 12154
    pls help
    this is a fresh install
    do i need to remove my oracle 10xe which is perfect working installed on a different drive
    pls help me
    Edited by: oraclehelper on May 20, 2009 1:45 AM

    Destination Folder: L:\oraclexe\
    Port for 'Oracle Database Listener': 1521
    Port for 'Oracle Services for Microsoft Transaction Server': 2030
    Port for HTTP Listener: 8081
    My friend, I believe you created a mess by Installing Oracle 10g Enterprise with your DHCP enable in Windows.
    There are only 2 options if you want to install Oracle 10g Enterprise on Windows.
    1. You install it using Static IP or not connected to network
    2. You install Microsoft Loopback, it is a virtual Network driver and this should be assigned as your primary Network driver instead of your current Network.
    So if you don't want any headache, the easiest way is uninstall your Oracle 10g, disable the DHCP and use static instead, then install again. that will work for sure.
    Don't try to play with the listener and everything because you will get into deeper and deeper problem that end up into frustration :(
    cheers
    Edited by: Chubbyd4d on May 19, 2009 12:58 PM
    Destination Folder: L:\oraclexe\
    Port for 'Oracle Database Listener': 1521
    Port for 'Oracle Services for Microsoft Transaction Server': 2030
    Port for HTTP Listener: 8081
    My friend, I believe you created a mess by Installing Oracle 10g Enterprise with your DHCP enable in Windows.
    There are only 2 options if you want to install Oracle 10g Enterprise on Windows.
    1. You install it using Static IP or not connected to network
    2. You install Microsoft Loopback, it is a virtual Network driver and this should be assigned as your primary Network driver instead of your current Network.
    So if you don't want any headache, the easiest way is uninstall your Oracle 10g, disable the DHCP and use static instead, then install again. that will work for sure.
    Don't try to play with the listener and everything because you will get into deeper and deeper problem that end up into frustration :(
    cheers
    Edited by: Chubbyd4d on May 19, 2009 12:58 PM
    clean start
    ================================================================================================================
    Output generated from configuration assistant "Oracle Net Configuration Assistant":
    Parsing command line arguments:
    Parameter "orahome" = N:\oracle10g
    Parameter "orahnam" = OraDb10g_home1
    Parameter "instype" = typical
    Parameter "inscomp" = client,oraclenet,javavm,server,ano
    Parameter "insprtcl" = tcp,nmp
    Parameter "cfg" = local
    Parameter "authadp" = NO_VALUE
    Parameter "nodeinfo" = NO_VALUE
    Parameter "responsefile" = N:\oracle10g\network\install\netca_typ.rsp
    Done parsing command line arguments.
    Oracle Net Services Configuration:
    Profile configuration complete.
    The information provided for this listener is currently in use by other software on this computer.
    Listener start failed. Listener may already be running.
    Listener configuration complete.
    Default local naming configuration complete.
    Oracle Net Services configuration successful. The exit code is 0
    Configuration assistant "Oracle Net Configuration Assistant" succeeded
    ================================================================================================================
    Output generated from configuration assistant "iSQL*Plus Configuration Assistant":
    iSQL*Plus 10.1.0.2.0
    Copyright (c) 2004 Oracle. All rights reserved.
    Starting iSQL*Plus ...
    iSQL*Plus started.
    Configuration assistant "iSQL*Plus Configuration Assistant" succeeded
    ================================================================================================================
    Output generated from configuration assistant "Oracle Database Configuration Assistant":
    Configuration assistant "Oracle Database Configuration Assistant" failed
    ================================================================================================================
    Output generated from configuration assistant "Oracle Database Configuration Assistant" (attempt 2):
    Configuration assistant "Oracle Database Configuration Assistant" failed
    ================================================================================================================
    Output generated from configuration assistant "Oracle Database Configuration Assistant" (attempt 3):
    Configuration assistant "Oracle Database Configuration Assistant" failed
    install microsoft loop back adapter okay
    ip 10.10.1.1
    255.255.255.0
    still ora 12154
    disable dhcp client on services.msc
    still ora 12154
    pls help
    this is a fresh install
    do i need to remove my oracle 10xe which is perfect working installed on a different drive
    pls help me

  • ISQL*Plus startup problem

    Having reviewed the recent thread on this subject but still unable to get iSQL*Plus - I need some help. Here are the details:
    Environment: Windows XP, Oracle 10g PE
    Started iSQL*Plus in CMD window with command: isqlplusctl start - and got message iSQL*Plus started
    Now I go to IE and try the URL for iSQL*Plus I got when I installed: http://192.168.1.100:5560/isqlplus - and get the message: The page can not be displayed.
    What am I doing wrong?
    Any help is appreciated - as I am new to Oracle...
    kavindra

    Kavindra
    i have installed oracle 9i release 1 on windows 2000 pro but iSQL Plus not working.
    I checked on installed products and it is there and also find isqlplus.conf file.
    what are the requirements of iSQL Plus and how can we chech them?
    I have not find 'isqlplus.ini' where it should be?
    isqlplusctl start is also not working.
    how can we check http server availability?
    I tried http://localhost but IIS is opening.
    Tried http://localhost:7776/isqlplus - getting same message: The page can not be displayed.
    Hope you can help on this issue as you solved your problem.

Maybe you are looking for

  • Install the adf runtime

    I have installed the weblogic server 10.3.5.0 on Oracle Linux 5.7, and now I want to deploy my adf web application developed by jdev11g R2 (11.1.2.0.0), but can not as the Oracle ADF runtime need to be installed, I have no idea how to install it into

  • My address line went away.  how can i get it back?

    I opened Safari and the apple page opened.  Usually there is an address line and now it is gone.  Help me get it back...please.

  • Libucb.so.1: open failed!

    I have a problem that I just can't seem to figure out... SunOS 5.8 sun4u sparc SUNW,Ultra-5_10 GNU Make 3.78.1 built for sparc-sun-solaris2.7 gcc 2.95.3 20010315 (release) I have a Java JAR application that uses a JNI which in turns links to mylib.so

  • LMS 3.2 CiscoWorks Daemon Manager does not want to startup in Windows Server 2008 64bit?

    I need help concerning the CiscoWorks Daemon Manager that does not want to startup. I keep on getting the Error 1053. I installed the CiscoWorks LMS 3.2 Evaluation. I just need the CiscoWorks Daemon Manager started up. I know a solution was posted bu

  • Can't open itunes!!! iTunes 7 shortcuts don't work!

    I can't open itunes except for right-clicking on a mp3 or media file and clicking "open with.....itunes" Can anyone explain why this is? None of the shortcuts work! Please let me know how to solve this.