ISQLPLUS

After installing Oracle 10g R2 on Windows XP Pro (Enterprise Edition), I discovered that iSQLPLUS was not installed as a Windows Service, eventhough the link (http://localhost:5560/isqlplus) to iSQLPLUS is present. Browser shows "The page cannot be displayed".
What went wrong and how can I solve this?
Thank you!

hi,
check isqplus services is start or not.
if services is stop then start first .
start > run >services.msc <<enter>>
regards
Taj

Similar Messages

  • Isqlplus with  oracle 8.1.7 on Solaris 9x86

    I installed oracle 8.1.7 on Solaris 9x86, all is fine.
    But I dont see any where that I could use isqlplus through nestcape.
    Is there any way that I could start isqlplus through my browser.
    Please help!!!

    You mean that I can install isqlplus from oracle9i into my oracle8.1.7.You would need to install into a new Oracle9i-only directory (i.e. a
    new ORACLE_HOME). The iSQL*Plus in it would be able to connect to
    your existing 8.1.7 database using Oracle Net.
    Unfortunately I see 9i is not supported on Solaris x86 (though 10g is
    "projected".)
    The French iSQL*Plus 8.1.7 document you refer to talks about the first
    pre-production version of iSQL*Plus released. It cannot be
    recommended for use, and is no longer available.
    -- CJ

  • Problem with isqlplus (10.2) on Windows XP

    Hi,
    I have just installed Oracle 10.2 on XP and I have checked isqlplsu to be installed. This machine. When I try to connect to isqlplus I have the error message :
    The connection was refused when attempting to contact "machine_name":5560
    When I try to do "isqlplusctl start", I have the following error :
    Failed to start the service Error 203; the system has not found the specified environment option.
    The italic portion above is translated from french.
    Same thing when I try to stop it (just replace start by stop). In the two cases it says that isqlplus started (stopped) in spite of the error message.
    When I check Windows services I find that isqlplus service is running but without any possibility to change its status (all options are not available). The start/stop buttons from Windows are not active.
    Any ideas?

    Hi all,
    It works now!
    The only thing is that I reinstalled jdk.
    In fact, I had jdk on my machine and I removed it a time ago before installing Oracle. I reinstalled it without any modification to environment variables and isqlplus works.
    But I am surprised because AFAIK, Oracle installs its own jdk. so what could it be?
    Message was edited by:
    Michel

  • Isqlplus is not working in linux (oracle linux) in graphical mode

    I have installed Oracle 9i on Oracle Enterprise Linux.sqlplus is working in text mode .But isqlplus is not running .After installation it was working fine but when i have restarted the system it stopped running..........
    Firefox can't establish a connection to the server at oraclelinux.rcc.in:7778.
    Error message
    * The site could be temporarily unavailable or too busy. Try again in a few
    moments.
    * If you are unable to load any pages, check your computer's network
    connection.
    * If your computer or network is protected by a firewall or proxy, make sure
    that Firefox is permitted to access the Web.
    Please help me
    Sanjeev Jha
    Message was edited by:
    user634063

    You have to start Http server for that :
    $ $ORACLE_HOME/Apache/Apache/bin/apachectl start

  • How to run a script on Oracle server from isqlplus

    Hi I am trying to run a script on my workstation from Oracle server through isqlplus workarea. I entered following command and get the following error. i have enabled isqlplus URL by editing web.xml file already. Can please someone help how to run the script?
    @http://myaixserver.com:5560/scripts/Databasestartupstages.sql;
    SP2-0920: HTTP error 'page not found (505)' on attempt to open URL

    So far, you haven't specified your rdbms version and isqlplus behaved differently on a 9iR1, 9iR2 from the one release on 10gR1/R2. on 9i it was a servlet based on a JServ servlet executor machine, meanwhile on 10g it is a J2EE compliant application deployed on an OC4J container, so configuration is different.
    You may want to take a look at these references -->
    * Starting iSQL*Plus from a URL
    * Creating Reports using iSQL*Plus
    ~ Madrid

  • Running a stored procedure using  isqlPlus

    I have written a simple stored procedure which takes EMPLOYEE_ID as IN parameter returns EMPLOYEE_FIRST_NAME as OUT parameter (For Learning purpose only)
    How do I run this stored procedure using isqlPlus.
    Below is my stored procedure.
    CREATE OR REPLACE PROCEDURE "HR"."MY_PROC_2" (
    EMPLOYEE_ID_NUM in NUMBER,
    EMPLOYEE_FIRST_NAME out VARCHAR2
    as
    begin
    Select FIRST_NAME into EMPLOYEE_FIRST_NAME from Employees
    where Employee_ID = EMPLOYEE_ID_NUM;
    return;
    end;

    did you run that same procedure in SQL*Plus and it functioned ?
    Joel P�rez

  • Where do I fit iSqlplus and DBCA in Oracle Enterprise Management Framework

    The Oracle Enterprise Management Framework is divided into these functional areas:
    * Managed targets
    * Management Services
    * Oracle Management Repository
    * Oracle Enterprise Manager 10g Grid Control
    * Oracle Enterprise Manager 10g Database Control
    * Application Server Control
    Where do I fit iSqlplus and DBCA in this above category ?

    The Oracle Enterprise Management Framework is divided into these functional areas:
    * Managed targets
    * Management Services
    * Oracle Management Repository
    * Oracle Enterprise Manager 10g Grid Control
    * Oracle Enterprise Manager 10g Database Control
    * Application Server Control
    Where do I fit iSqlplus and DBCA in this above category ?

  • Installing isqlplus on existing 9.2.0.3  & 9.0.1.4 databases

    I have two Oracle databases one is 9.2.0.3 and one is 9.0.1.4. I would like to install isqlplus on these two systems. Can I do a custom install from a 9.2.0.4 install disk and just select isqlplus and or isqlplus and http for the install type?
    Thanks,
    John

    I haven't tried to install iSQL*Plus after the installs have been patched, but I suspect you will need to do a custom install from the original CDs. It may be safer and easier to install in one place, then configure that install to connect to the other databases.
    Alison

  • Why same query runs on isqlplus but not in Forms/Reports trigger

    Hi,
    I have one query in which I extract one column with parent table join if I run same query on isqlplus prompt it works but if I run same on Forms/Reports trigger it says found "select" where something else expected.
    below is an example .
    select em1.mreading, em1.grid_code,
    (select em.mreading from energy_mreading em where em.grid_code=em1.grid_code and em.transformer_code=em1.transformer_code
    and em.bus_bar=em1.bus_bar and to_date(to_char(em.r_date,'dd/mm/yyyy'),'dd/mm/yy') = to_date('02/01/07' ,'dd/mm/yy') - 1)
    as Yreading
    from energy_mreading em1
    where to_date(to_char(em1.r_date,'dd/mm/yyyy'),'dd/mm/yy')= to_date('02/01/07' ,'dd/mm/yy')
    Any one can help me, is there any restriction/limitations in Forms/Reports triggers.
    Thanks, Khawar.

    In forms and cursors you can not use scalar subqueries as you do. You have to use joins!
    select
         em1.mreading
        ,em1.grid_code
        ,em.mreading as Yreading
    from
        energy_mreading em1
       ,energy_mreading em
    where 1=1
        and trunc(em1.r_date) = to_date('02/01/2007','dd/mm/rrrr')
        and em.grid_code = em1.grid_code
        and em.transformer_code = em1.transformer_code
        and em.bus_bar = em1.bus_bar
        and trunc(em.r_date) = trunc(em1.r_date) - 1
    Try this, hope it works.

  • ISQLplus not working

    Hi forum,
    isqlplusctl start : okay.
    http://<servername>:5560/iSQLplus doesn't work.
    Is there any need to make an entry into /etc/services or tnsnames.ora or listener.ora ? Or must iSQLplus be installed separately ?
    http://<servername>:5560 works and shows Oracle Application Server Containers for J2EE 10g (9.0.4.1.0) .
    Port 5560 can be seen via netstat -an with status "listening".
    What am I making wrong ?

    Okay, done !!! My fault. iSQLplus instead of isqlplus !!! Books are not always right.
    Kind regards
    Samplitude

  • Isqlplus in 11g

    hi all ,
    is the isqlplusctl don not exist in oracle 11g when install it .???
    if true there is no isqlplusctl in 11g installer how to install it ???
    please advice
    MANY THANKS

    Install oracle 10 in a different home since it still has iSQLPLUS.
    Trying to somehow force this into Oracle 11 would be a huge hack. You want to avoid that in my humble opinion.
    You can probably write a custom PHP which would be a cleaner solution :
    http://www.oracle.com/technetwork/articles/ullman-bindings-088836.html
    http://st-curriculum.oracle.com/obe/db/11g/r2/prod/appdev/opensrclang/phphol2010_db/php_db.htm
    http://www.oracle-base.com/articles/misc/WebScriptingForOracle.php
    Best Regards
    mseberg
    Edited by: mseberg on Dec 30, 2011 12:47 PM
    Also see
    Approved Desupport Advisories & Notices Published - February 2006 [ID 359891.1]
    So Oracle killed it almost 6 years ago, at this point its old technology if nothing else.
    Edited by: mseberg on Dec 31, 2011 2:54 AM

  • Error in the isqlplus.conf file?

    Is there anyone else out there that gets this message? Each time I try to run my HTTP server to access iSQL*Plus, I get:
    "Syntax error on line 92 of c:/oracle/ora92/sqlplus/admin/isqlplus.conf: FastCgiServer: redefinition of a previously defined FastCGI server "c:/oracle/ora92/bin/isqlplus"
    Does anyone know how I can adjust this config file, or otherwise fix this problem?
    Other than that, the Enterprise edition is up and running, including the SQL Plus app.
    Any advice is greatly appreciated.
    Thanks!
    Eric

    Hi Alison,
    Thanks for the response! Unfortunately, I tried both of these, and neither seems to apply:
    http://otn.oracle.com/support/tech/sql_plus/htdocs/runtime.html#isql_duplicate_entriesAt first, I thought this would be the problem, since I installed twice, but there was only one oracle_apache.conf file in the directory...
    http://otn.oracle.com/support/tech/sql_plus/htdocs/runtime.html#isql_mutex_errorThis one actually talks about a different config file. I'm getting errors on my isqlplus.conf file. It's saying that there's an error b/c of "FastCGIServer: Redefinition of a previously defined Fast CGI Server" Here's what the config file looks like on that (in relevant part):
    # Maps all virtual paths beginning with "/isqlplus*" to the iSQL*Plus
    # FastCGI application
    <IfModule mod_alias.c>
    ScriptAliasMatch ^/isqlplus(.*) C:\oracle\ora92\bin\isqlplus
    ScriptAliasMatch ^/isqlplusdba(.*) C:\oracle\ora92\bin\isqlplus
    <Directory "C:\oracle\ora92\bin">
    AllowOverride None
    Options FollowSymLinks
    Order deny,allow
    Allow from all
    </Directory>
    </IfModule>
    The other reference to the FastCGI server is here: <<#
    # Setup the iSQL*Plus FastCGI application.
    <IfModule mod_fastcgi.c>
    FastCgiServer C:\oracle\ora92\bin\isqlplus -port 8228 -initial-env iSQLPlusNumberOfThreads=20 -initial-env iSQLPlusTimeOutInterval=30 -initial-env iSQLPlusLogLevel=off -initial-env iSQLPlusAllowUserEntMap=none -idle-timeout 3600
    </IfModule>
    Not sure about where else this FastCGI Server might be called, but it looks like one of the definitions is typographically different from the other. Could this be the issue?
    Eric

  • Arabic support in isqlplus after import export from 7.3.4 to 10.2.0.3

    CANNOT DISPLAY ARABIC IN ISQL*PLUS(JUNK). APPLICATION WORKS FINE WITH ARABIC
    with Taret DB char set to US7ASCII the data is always junk old data +new inserted arabic data inserted thro isqlplus or sqlplus.
    with AR8MSWIN1256 the old data(imported in to new db from old 7.3.4 db export dump) is displayed as junk (what ever in the db) and after creating a new table data inserted, the arabic display is fine.
    How to overcome the problem of displaying old data? we have lots of data for migration.
    Thanks

    Small correction
    In DB with Char set to AR8MSWIN1256.......
    Old data exported from 7.3.4 and imported in new 10.2.0.3 db is showing arabic char as junk
    But new table created and data inserted as arabic is displaying properly.
    What has to be done such that old imported data displays arabic.
    We are using isqlplus and sqlplus to query the data
    Thanks

  • Why did Oracle get rid of iSQLPlus?

    This is a question for Oracle. Why did you get rid of iSQLPlus without replacing its capbilities? Both SQL Developer and APEX are for developers, but the end user no longer has a web-based method for running SQL queries. What are they to use if they are unable to have the client installed on their server and are not allowed to logon to the Oracle server in order to useSQL Developer's query abilities? How can an administator limit an end-users APEX permissions to query-building only?

    I'm not Oracle, so I won't even give opinions on your question. some advice however - ask your last question on the APEX forum.

  • Oracle Server 10.2.0.1 : isqlplus/dba/server URL : Host not found

    Windows XP SP 2
    Oracle Server 10.2.0.1
    DNS active
    Microsoft loopback adapter installed
    Provided URLs (isqlplus, dba, database control) does not work.
    IE shows an Error Message :
    "Network Access Message: The website cannot be found "
    "Error Code 11001: Host not found "
    Thanks for any help.
    Message was edited by:
    user583025

    Help yourself and God will help you !
    The URL provided for database control is now working.
    I had to clear all check boxes on dialog reached throughout IE/Tools/Internet Options/Connections/LAN Settings.
    The two other URLs - those provided at the end of Oracle Server installation for isqlplus and dba - are still not working.
    The error is now "Internet Explorer cannot display the webpage".
    So I still need some help...

  • Isqlplus in Oracle 8i

    hi!
    I just wanted to know , whether we have the option of isqlplus in Oracle 8i or not!
    If , yes, how to configure it! Can any please respond!
    Thank you for our time!

    Great to meet the legend of the Oracle! Don't exaggerate, please :-) Thank you anyway, but I can't do what you're asking. I did it once, and was not a good move (spam and everything else). I'll be glad to answer your questions here (if I can).

Maybe you are looking for