Embedded PL/SQL not working.

I have my application running on apex 3.2 two days ago. But now i am not able to access the APEX using URL (http://korvac-salman.korvac-qb.com:8080/apex/f?p=4550:10:3318553606004853) for my application and (http://korvac-salman.korvac-qb.com:8080) for the Apex main page. I have also reinstalled the APEX on my machine again in 11.2 database on windows and still i am not able to access the URL http://korvac-salman.korvac-qb.com:8080. I am using embedded PL/SQL gateway and using port 8080 as see by the following query
SALMAN11.LOCAL.COM$SYS> SELECT DBMS_XDB.GETHTTPPORT FROM DUAL;
GETHTTPPORT
       8080Remember that this URL was running fine two days ago. What could have gone wrong and how to make my APEX work again?
Thanks
Salman

All accounts related to APEX are open and unlocked
USERNAME                       ACCOUNT_STATUS
SYSTEM                         OPEN
SYS                            OPEN
APEX_PUBLIC_USER               OPEN
RMAN                           OPEN
APEX_030200                    OPEN
ANONYMOUS                      OPEN
FLOWS_FILES                    OPEN
DBADMIN                        OPEN
XS$NULL                        EXPIRED & LOCKED
ORACLE_OCM                     EXPIRED & LOCKED
DIP                            EXPIRED & LOCKED
USERNAME                       ACCOUNT_STATUS
OUTLN                          EXPIRED & LOCKED
DBSNMP                         EXPIRED & LOCKED
APPQOSSYS                      EXPIRED & LOCKED
XDB                            EXPIRED & LOCKED
CTXSYS                         EXPIRED & LOCKED
MDSYS                          EXPIRED & LOCKED
HR                             EXPIRED & LOCKED I can login using these users and i don't see any message of password expiry. One thing is that My computer is using dynamic IP from DHCP and does not have static IP, could this be an issue?
Salman

Similar Messages

  • Embedded Youtube videos not working on Chrome 23 / Flash player 11.5.31.2

    For the past couple of weeks, I've not been able to play any Youtube videos that appear as embedded videos on other websites.  The small player appears with the still frame from the video and all the controls, but on pressing play, the video goes blank and won't play (the slider stays stuck at 0:00).  Nor does the full screen button work - the player just stays where it is within the third party website.  This problem has occurred across more than one website, but all sites still work in Internet Explorer.
    The main Youtube site is still working.
    I have tried all relevant steps here, to no avail (except increasing memory for a particular website, since not just one website is affected):
    http://helpx.adobe.com/flash-player/kb/flash-player-games-video-or.html
    Details:
    Windows 7 Home Premium 32-bit
    Google Chrome 23.0.1271.64 m
    Flash Player 11,5,31,2
    Any suggestions please?
    John

    Thank your for your reply, Chris.
    I installed the newest version of Chrome, and the videos I have
    embedded on my blog are now working.
    Regards,
    Frank
    2012/11/30, Chris Campbell <[email protected]>:
    Chris Campbell http://forums.adobe.com/people/chris.campbell created the
    discussion
    "Re: Embedded Youtube videos not working on Chrome 23 / Flash player
    11.5.31.2"
    To view the discussion, visit:
    http://forums.adobe.com/message/4885375#4885375

  • Working in Sql, not working in Stored procedure

    Dear friends,
    I am puzzled about this strange working of Oracle , although I know that there is some problem with my code. I paste my code here. The delete statement is working properly in SQL Plus 8.0, but it is not working when I call this stored procedure from the Form.
    FUNCTION delete_record_treaty (
    p_treaty_id T_RIN_TREATY_MST.TRTY_ID_GV%TYPE, p_value VARCHAR2,p_block VARCHAR2 )
    RETURN BOOLEAN IS
    v_treaty_type varchar2(5);
    BEGIN
    v_treaty_type := substr(p_treaty_id,1,3);
    if p_block !='T_RIN_GRP_DTL' and p_block != 'T_RIN_XOLSLAB_DTL' and p_block!='T_RIN_PMTSCHD_DTL' then
    delete from T_RIN_TREATY_MST where TRTY_ID_GV=p_treaty_id ;
    commit;
    end if;
    if v_treaty_type = 'QTA' then
    delete from T_RIN_GRP_DTL where TRTY_ID_MV=p_treaty_id and T_RIN_GRP_DTL.ROWID = p_value;
    commit;
    elsif v_treaty_type = 'XOL' then
    delete from T_RIN_XOLSLAB_DTL where TRTY_ID_MV=p_treaty_id ;
    delete from T_RIN_PMTSCHD_DTL where TRTY_ID_MV=p_treaty_id ;
    elsif v_treaty_type = 'FAC' then
    delete from T_RIN_PMTSCHD_DTL where TRTY_ID_MV=p_treaty_id ;
    end if;
    RETURN(TRUE);
    END delete_record_treaty;
    Thanks in advance.
    All the paramaters that I pass, are correctly being passed to this stored procedure.
    null

    I solved it.One parameter I was passing it wrongly.
    Gee :D
    Subramanian V.

  • Embedded OC4J Bindings Not Working

    I am having trouble with loading an AppModule using the 10.1.3 OC4J Embedded AS. When try creating an ADF panel binding I get the following error:
         javax.naming.NamingException: Lookup error: javax.naming.AuthenticationException: No such domain/application: "current-workspace-app/current-workspace-app";
    However, I can get a working reference to the AppModule using:
         env.put(Context.INITIAL_CONTEXT_FACTORY, "com.evermind.server.rmi.RMIInitialContextFactory");
         env.put(Context.SECURITY_PRINCIPAL, "oc4jadmin");
         env.put(Context.SECURITY_CREDENTIALS, "welcome");
         env.put(Context.PROVIDER_URL, "ormi://localhost:" + RMI_PORT + "/current-workspace-app");
         Context ctx = new InitialContext(env);
         AppModuleHome ejbhome = (AppModuleHome)PortableRemoteObject.narrow(ctx.lookup("AppModuleBean"), AppModuleHome.class);
         RemoteAppModule ejb = ejbhome.create(env);
    but I cannot use that in a data binding. Why does the first one using the generated code not work?

    Hi,
    tried with JDeveloper 10.1.3.3 and this works for me. Try JDeveloper 10.1.3.3 - if it doesn't work, have a closer look at your sessionFacade
    Frank

  • JDBC (SQL) not working in thread

    I was surprised by a strange (bug?)
    I had two programs that were implementing the Java Serial Port API, each interfaced to a specific instrument. I was asked to combine the two programs into one, run it on one workstation, and run it as a service. This is on an W2K machine and they want it to work even if no one is logged in.
    Well, I started each class as a serial port listener and a runnable, thinking it might be best for each listener to have its own thread. That runs just fine. But, one of the instruments sends a lot of data, so once I had a buffer full of stuff to parse and upload (to Oracle), is started another processing thread to handle the data, and let the parent thread get back to listening to the serial port.
    Well, I parsed the data just fine, but after I created the connection, created a statement, and then tried to execute a line of SQL, it just stopped, no exceptions, but no results. I keep a log of what is going on, and it looks like the thread just dies.
    So, for experimenation, I changed the parent threads back to plain classes and created the instances of them, still leaving the processing piece as a thread. (The only draw back to this is that I cannot transmit from both instruments at the same time.) Well, the SQL worked fine, so I am wondering if there is a problem with the JDBC and threads, or inner threads?
    Anyone have any suggestions?
    Thanks,

    As I understand it, your code does not work only when you run it as a service. Although I may well not understand it (for example I don't know what you think an "inner" thread is, and I don't understand your distinction between "class" and "thread", since everything runs in some thread or other in Java).
    Is this correct? Have you managed to get the original (single instrument) code running as a service? My guess is that there's nothing wrong with Java, but there is some issue with running it as a service.

  • Embedded TTF font not working

    Hi everybody.
    In the first place, thank you. In the other hand, sorry for all my possible English mistakes.
    I have made several ePubs (validated in epubcheck and FlightCrew) with embedded fonts and all of them have always worked fine in ADE 1.7.2.
    However, the same ePubs in ADE 1.8. preview are failing. I don`t know why, but the text with the embedded font is not being displayed at all. 
    What has been changed that I'm missing it?

    This problem has been solved in the new preview version.
    Thanks!

  • Embedded YouTube videos not working

    Hello,
    Embedded YouTube videos used to work fine up until a few days ago but they have stopped working in all browsers. I use Safari, Firefox and Netscape Navigator.
    I am using Mac OS X (10.6.3) and have just conducted a software update and installed a fresh version of flash. This can't be a browser problem because it is not working on any of the browsers. I am having problems viewing embedded YouTube videos on such sights as Blip.fm, Facebook, etc but they used to work fine a couple of weeks ago.
    Is this a problem with flash? or Mac OS X?

    Another me too. In particular the symptoms are this:
    + any YouTube video embedded within a webpage loads the poster frame and the controls, but after clicking the play button only shows the progress indicator briefly before showing "An error occurred, please try again later." within the video frame.
    + the same YouTube videos play fine on the YouTube site.
    + other Internet video plays fine, embedded or not.
    + when the error occurs Safari reports "One error in opening the page. For more information, choose Window > Activity".
    + the Activity window shows "forbidden" for http://v13.lscache4.c.youtube.com/videoplayback?ip=0.0.0.0&sparams=id%2Cexpire%2 Cip%2Cipbits%2Citag%2Calgorithm%2Cburst%2Cfactor%2Coc%3AU0dWSVhMVV9FSkNNNl9QRllH &fexp=900028&algorithm=throttle-factor&itag=34&ipbits=0&burst=40&sver=3&expire=1 274817600&key=yt1&signature=C15947474FA80C9A1B9DA597103C5FF7D621A478.0C1490DE456 5D519F602B0043A4E1F9D800417A0&factor=1.25&id=c3e8886e8b459334
    + the same URL downloads fine when visiting YouTube directly, except the signature value is different.
    I have tested the following:
    + the same computer worked fine a week or so ago
    + other computers on the same shared ADSL connection work fine
    + Firefox works fine (contrary to other's experiences)
    + deleting com.apple.Safari.plist doesn't help
    + disabling/enabling the "Enable Plug-ins" preference doesn't help
    + deleting Preferences/Macromedia folder doesn't help
    + reinstalling Flash doesn't help
    + empty cache doesn't help
    Tis quite perplexing.

  • Embeded Flash component not working

    I have createdf a Flash movie using the Drag & Drop
    Learning Interactions Component using Flash MX 2004. The
    interaction works fine as standalone Flash movie but when embedded
    in an Adobe Presenter presentation, the drag works ok but it will
    not drop the object. I have had the Breeze control the Flash movie
    and also Breeze not control the movie.
    Any ideas?

    Hi Conrad!
    As you have no doubt already realized, using the Learning
    Interaction templates that are available in Flash MX / MX2004 and 8
    will not work at all in Presenter content.
    The coding methods conflict while playing back within the
    Breeze environment and I
    think it has to do with the _dropTarget property as part of
    the interaction's codebase. The _dropTarget method is NOT supported
    in Breeze, but the hitTest() method IS!
    I have written a few drag and drop exercises that do work
    within Breeze content, and you have to use the hitTest() method to
    accomplish it.
    As you already have discovered, the bottom line is that the
    learning components were intended to be "stand alone" objects that
    could be incorporated into a web page (or even a CD as these
    objects are nothing more than swf files). Aside from the fact that
    the prebuilt/preconfigured learning objects in flash don't always
    work in Breeze, in my mind, the bigger question here is the ability
    (or more accurately) the inability to connect these SCO's to an LMS
    for tracking. As stand alone objects, they're actually pretty
    handy...but not in Breeze.
    I realize this doesn't help much with what you're trying to
    do, but from my perspective, you're better off creating your own
    drag n' drops.
    I've got a bunch of examples to share if you'd like to take a
    look...just send me a PM or email if you're interested.
    Rob
    [email protected]

  • Html embeded in footer not working

    I have had a footer with a "counter"  and the adobe muse "badge" for over a year.  now   the text boxes display, and the facebook counter is OK.   my page "hit" counter no  longer works  and the adobe muse badge doesn't display.    it looks fine on the  design page when I publish the page or  even preview it ,  the former items don't work.
    has Adobe done something with embeded HTML code.  my goggle calendar is suddenly a mess too!!
    I have a separate post about the calendar problem,  but now it seems it's is a HTML embed problem site wide. 
    Please Help.    should I go to Muse CC  immediately.   I trying to finalize this site for a client, and now I have issues with pages/parts that have be OK for nearly a year?   so very confused. 
    here is the design page: 
    here is the page in safari  ( same in preview mode ) but it worked fine for months and I have not changed anything
    in these code snippets.
    here is the counter code:  ( can someone recommend a good, safe place to get a hit counter ? )
    <!-- Counter Code START -->
    <style type="text/css">#counter_140540 {font-family: "Verdana"; font-size: 12px; clear: left; color: #BBBBBB;}  #counter_140540 a {color: #BBBBBB;}#counter_div_140540 {height: 21px}</style><div id="counter_div_140540"></div><p id="counter_140540"><span></span> <a target="_blank" href="http://utbildningsbloggen.wordpress.com/category/niclas-kjellstrom-matseke/"> </a> <span></span></p><script type="text/javascript" src="http://counter.website-hit-counters.com/bright-green/140540"></script>
    <!-- Counter Code END -->
    here is the adobe badge:
    <a href="http://muse.adobe.com" rel="Muse beta by Adobe"><img src="http://muse.adobe.com/made-with-muse-badge/made-with-muse-110x49-for-dark-bg.png" alt="Muse beta by Adobe" width="110" height="45" /></a>
    thank you for any assistance.  

    thank you for your reply, 
    here is the home page URL:
    http://farandawayfarms.businesscatalyst.com/index.html
    There are about 10 master pages ( yes a problem I know) 
    all the top level pages come from one master. 
    the children pages off each top level have their own master page and a separate copy of the footer, header, and menu bar, 
    for each master.   
    the HTML in the footers do not work on any of the pages, so all the  footers on all the master pages are not executing.
    the Visitors ->MapInfo  page shows the header pushed half way off the page.  I did delete the google map, as it has some odd error
    and added it back again , so I have made a change to that page.   
    http://farandawayfarms.businesscatalyst.com/mapinfo.html
    also the google calendar display is broken too and show very odd formatting for display, nothing like the one week default 
    and calendar entries I set up in the google customize calendar html for expert tool  
    Calendar -> Weekly Lesson is the calendar page.    I have added the code at least a dozen times.   it finally looked ok, 
    but then when you come back to the web site,  it is all corrupted again.    the display in the muse design .  
    http://farandawayfarms.businesscatalyst.com/weeklylessons.html
    all the masters are stand alone,  except  that I applied the "main master"  to the  Visitors master , and thus the Visitors hierachry.  
    i tried to attach my website ".muse" file, but it is larger than 25 Mb, so yahoo rejected it.   
    I saw a note somewhere about sending larger files using some Adobe file tool, so I"ll try to find it.  
    I don't know what is going on.   I do know that all my html code was fine a couple months ago, and now none of it seems to 
    be executing properly.   I have not changed any of the footers.
    I will post this in the discussion forum too.   just for completeness.. 
    Lynn

  • WHY DOES THIS SQL NOT WORK

    I have 4 statements.
    echo off
    plus80 / @z:\nesp1483_batch
    plus80 / @z:\nesp1484a_batch
    exit
    The first statement plus80 / @z:\nesp1484_batch inserts records into a table and creates a report and deletes the table.
    However the second statement plus80 / @z:\nesp1484a_batch is not working properly. I want it to insert records into a table, create a report and then delete the table but it is not working properly. It is hanging up on this statement.
    I need to say plus80 to get the program to execute properly.
    I have also tried sqlplus /@z:\nesp1484a_batch but this does not work either.
    What do I need to do to make the third statement to execute properly?

    I know that it is not working
    because the response time is slow and I have over 15 minutes
    and nothing is happening. How do you know it is not working as opposed to just working slow?
    Do you have any logging routines in your code? If you have, switch on them on and see what's happening. If not, now is a good time to think about including them...
    Cheers, APC

  • Embeded Flash player not working

    I have a browser-based app that we are considering porting to
    AIR. The basic functionality of the app uses AJAX to pull down a
    list of videos to be displayed, then plays the video when it is
    selected. The browser-based app uses Quicktime videos, which I have
    come to learn won't work in AIR, so I'm trying to switch to a Flash
    player.
    My problem is that for the life of me, I cannot get AIR to
    play the video. I created the player in Flash, and everything works
    great there, as well as in any browser I can find. When I load in
    AIR, I see the player, but playback never starts. My
    application.xml file is very simple:
    quote:
    <?xml version="1.0" encoding="UTF-8"?>
    <application xmlns="
    http://ns.adobe.com/air/application/1.0"
    version="1.0">
    <id>test</id>
    <version>0.1</version>
    <name>test</name>
    <filename>test</filename>
    <initialWindow>
    <content>intro2.html</content>
    <visible>true</visible>
    <maximizable>true</maximizable>
    <minimizable>true</minimizable>
    <width>1100</width>
    <height>1000</height>
    </initialWindow>
    </application>
    and my page is also quite bland:
    quote:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "
    http://www.w3.org/TR/html4/strict.dtd">
    <html>
    <head>
    <title>Demo</title>
    <script type="text/javascript" language="JavaScript"
    src="AIRAliases.js"></script>
    </head>
    <body>
    <object
    classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"
    width="857" height="484" id="airPlayer" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="allowFullScreen" value="false" />
    <param name="movie" value="airPlayer.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#000000" />
    <embed src="airPlayer.swf" quality="high"
    bgcolor="#ffffff" width="857" height="484" name="airPlayer"
    align="middle" allowScriptAccess="sameDomain"
    allowFullScreen="false" type="application/x-shockwave-flash"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    />
    </object>
    </body>
    </html>
    My xml file, intro2.html, airPlayer.swf and
    intro.flv are all in the same directory. Any advice would be
    appreciated.

    Hi Conrad!
    As you have no doubt already realized, using the Learning
    Interaction templates that are available in Flash MX / MX2004 and 8
    will not work at all in Presenter content.
    The coding methods conflict while playing back within the
    Breeze environment and I
    think it has to do with the _dropTarget property as part of
    the interaction's codebase. The _dropTarget method is NOT supported
    in Breeze, but the hitTest() method IS!
    I have written a few drag and drop exercises that do work
    within Breeze content, and you have to use the hitTest() method to
    accomplish it.
    As you already have discovered, the bottom line is that the
    learning components were intended to be "stand alone" objects that
    could be incorporated into a web page (or even a CD as these
    objects are nothing more than swf files). Aside from the fact that
    the prebuilt/preconfigured learning objects in flash don't always
    work in Breeze, in my mind, the bigger question here is the ability
    (or more accurately) the inability to connect these SCO's to an LMS
    for tracking. As stand alone objects, they're actually pretty
    handy...but not in Breeze.
    I realize this doesn't help much with what you're trying to
    do, but from my perspective, you're better off creating your own
    drag n' drops.
    I've got a bunch of examples to share if you'd like to take a
    look...just send me a PM or email if you're interested.
    Rob
    [email protected]

  • Have FLV embedded on website - Not working on all computers

    It is working on all the computers that I have for testing but some of my clients say the video is not playing:
    http://lamplighttheatre.com       Under the Yuletide/Click Here for Tickets there should be an flv playing automatically.
    Works on my machines with IE8 IE9 and Chrome but is not working on client's machine with IE9.  Any suggestions?

    It may possibly be due to the client running an older version of Flash player. There's KB article on the subject here: http://kb2.adobe.com/cps/904/cpsid_90416.html
    I'm running Firefox 8.0.1 and didn't experience any issues with your site in any event.

  • SQL+ not working: TNS-12560

    I just installed XE on WXP and although the web interface works fine I can't use SQL+
    Below is some information. This is very frustrating. I am an application developer; I switched from the full 10g to XE in the hope that I would no longer be wasting my time on those exasperating network problems and would be able to concentrater on developing instead but no such luck... Why is it asking too much that XE should work properly after installation? I have not changed anything beyond creating a couple of user accounts with the web interface. This is as virgin an installation as it gets.
    Any help would be greatly appreciated.
    ===============================================================
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>lsnrctl status
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 28-MAR-2006 03:58
    :14
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Produ
    ction
    Start Date 23-MAR-2006 03:22:46
    Uptime 4 days 23 hr. 35 min. 29 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Default Service XE
    Listener Parameter File C:\oraclexe\app\oracle\product\10.2.0\server\network\admin\listener.ora
    Listener Log File C:\oraclexe\app\oracle\product\10.2.0\server\network\log\listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC_FOR_XEipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=wk1)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8080))(Presentation=
    HTTP)(Session=RAW))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
    Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "XEXDB" has 1 instance(s).
    Instance "xe", status READY, has 1 handler(s) for this service...
    Service "XE_XPT" has 1 instance(s).
    Instance "xe", status READY, has 1 handler(s) for this service...
    Service "xe" has 1 instance(s).
    Instance "xe", status READY, has 1 handler(s) for this service...
    The command completed successfully
    ===============================================================
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>lsnrctl services
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 28-MAR-2006 03:59
    :22
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
    Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0
    LOCAL SERVER
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0
    LOCAL SERVER
    Service "XEXDB" has 1 instance(s).
    Instance "xe", status READY, has 1 handler(s) for this service...
    Handler(s):
    "D000" established:18 refused:0 current:18 max:1002 state:ready
    DISPATCHER <machine: WK1, pid: 9740>
    (ADDRESS=(PROTOCOL=tcp)(HOST=wk1)(PORT=1729))
    Service "XE_XPT" has 1 instance(s).
    Instance "xe", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0 state:ready
    LOCAL SERVER
    Service "xe" has 1 instance(s).
    Instance "xe", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0 state:ready
    LOCAL SERVER
    The command completed successfully
    ===============================================================
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>tnsping xe
    TNS Ping Utility for 32-bit Windows: Version 10.2.0.1.0 - Production on 28-MAR-2
    006 04:18:03
    Copyright (c) 1997, 2005, Oracle. All rights reserved.
    Used parameter files:
    C:\oraclexe\app\oracle\product\10.2.0\server\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = wk1)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = XE)))
    OK (3750 msec)
    ===============================================================
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>sqlplus system/orcl as sysdba
    SQL*Plus: Release 10.2.0.1.0 - Production on Tue Mar 28 04:00:49 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    ERROR:
    ORA-12560: TNS:protocol adapter error
    Enter user-name:
    [killed with Ctrl-C]
    ===============================================================
    sqlnet.log is full of entries like this, one for each attempt:
    Fatal NI connect error 12560, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oracleorcl)(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(CONNECT_DATA=(SID=orcl)(CID=(PROGRAM=C:\oraclexe\app\oracle\product\10.2.0\server\BIN\sqlplus.exe)(HOST=WK1)(USER=Privileged))))
    VERSION INFORMATION:
         TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
         Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 10.2.0.1.0 - Production
    Time: 28-MAR-2006 03:32:14
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12560
    TNS-12560: TNS:protocol adapter error
    ns secondary err code: 0
    nt main err code: 530
    TNS-00530: Protocol adapter error
    nt secondary err code: 2
    nt OS err code: 0
    ===============================================================
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>type ..\network\ADMIN\sqlnet.ora
    # This file is actually generated by netca. But if customers choose to
    # install "Software Only", this file wont exist and without the native
    # authentication, they will not be able to connect to the database on NT.
    SQLNET.AUTHENTICATION_SERVICES = (NTS)
    ===============================================================
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>type ..\network\ADMIN\listener.ora
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\oraclexe\app\oracle\product\10.2.0\server)
    (PROGRAM = extproc)
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\oraclexe\app\oracle\product\10.2.0\server)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (ADDRESS = (PROTOCOL = TCP)(HOST = wk1)(PORT = 1521))
    DEFAULT_SERVICE_LISTENER = (XE)
    ===============================================================
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>type ..\network\ADMIN\tnsnames.ora
    XE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = wk1)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = XE)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>
    ===============================================================
    The service called OracleXETNSListener is definitely running. Also, there is a firewall running on this box but its log does not report any blocked connection attempt from any Oracle-related process. I have allowed tnsping.exe, tnslsnr.exe and oracle.exe.

    Thanks a lot! That was indeed the problem: if I do 'sqlplus sys@xe as sysdba' I can
    connect. Trying to find where that orcl comes from, I did have ORACLE_SID set to orcl
    in my environment and I removed it; that did it: sqlplus can now connect even if I do not
    set the connect id. Maybe the installer could be enhanced to look for leftover Oracle-
    related env vars?
    However there is still some weirdness: the above refers to the sqlplus that comes with
    the server bundle but if I use the sqlplus from the client bundle I get "ORA-12154:
    TNS:could not resolve the connect identifier specified" when I specify the connect id
    and "ORA-12560: TNS:protocol adapter error" when I don't. sqlnet.log shows it is still
    using orcl as the SID. I don't really need the client anyway: only the jdbc jar, so I
    could just remove it but this is just weird...

  • SQL not working in Multiselect prompt

    Hi all,
    I have restricted the results in Multiselect Prompt by giving the sql query.It is working fine but when i try to search for particular record in Multiselect it is not filtering the results by applying the query instead it is using the base query with no restrictions.
    Please help.

    I understand and I don't understand... So you have a dashboard prompt set to multi-select, yes? You have changed "Show" to "SQL Results" and added your "active products" filter, yes? Now with the prompt and report in the dashboard, you click on the ellipsis of the prompt and for example, you change "Match" to "begins with," type "A" and click on "Go" which then displays all the values that begin with "A," yes?
    Now you select those "A" products and click on the left arrow to bring them to the left pane, yes? Then you click "Ok" which closes the window and click on "OK" one more time to run the prompt, yes?
    Now you are saying that the report filters "all the products that start with 'A' both active and inactive, yes? And this is what I don't understand. The report should be filtered by the specific "A" starting products you selected in the prompts, not "all 'A' starting values" regardless of whether they are active or inactive. If you have "Is Prompted" on the appropriate column, you should get only those values from the prompt, nothing more.
    How are you getting "all values that start with 'A'"? Please explain.

  • P/SQL Not Working in SQL Developer

    The following P/SQL seems to work fine in SQL Plus but does not run in SQL Developer
    insert /*+ append */ into upl_exclude_claims
    (select /*+ ordered parallel(s,4) parallel(claim,4) */
    /*+ use_hash(s,claim) no_index(claim, xbm_clm_recip) */
    s.recip,
    s.month_1st_day
    from lrx.upl s,
    mcd.fact claim;
    Thanks

    911105 wrote:
    The following P/SQL seems to work fine in SQL Plus but does not run in SQL Developer
    insert /*+ append */ into upl_exclude_claims
    (select /*+ ordered parallel(s,4) parallel(claim,4) */
    /*+ use_hash(s,claim) no_index(claim, xbm_clm_recip) */
    s.recip,
    s.month_1st_day
    from lrx.upl s,
    mcd.fact claim;
    ThanksWhat happens when you run it? Do you get an error or does nothing happen?
    If you get an error post the message
    Why didn't the first answer I did to this question post???

Maybe you are looking for

  • Add a new wiki page

    hi to all i want to share my new knowledge about to view a pdf inside firefox, so the right idea is to create a new archwiki page. unfortunately i have no time to create and correct its (i'm not english), so i post here , hoping that someone can crea

  • Adobe Type Manager problem with Windows 7 and DIN font file extension not showing

    I have Windows 7 and for some reason I cannot install Adobe Type Manager onto my Computer. I need ATM to install the DIN font but am having no luck what so ever. I can see the DIN font in my Dropbox but it is showing up like this:-  ._DIN-bold, no fi

  • How to process data in the past based from data in the present

    hello guys, i have a problem in my labview programs. how to process data in the past based from data in the present ? i have a formula self-organizing maps this formula is looking for D1, D1 is neuron index that will be searched for the smallest valu

  • SP13 - missing indicator Configure Certificate Authentication

    Hi all, We are trying to set up configuration for scenario with certificate authentication. XI will send data to remote system using certificate authentication. Even if we are on SP13, we don't see any "Configure Certificate Authentication" indicator

  • Syncing mobile phones on C510i

    Hi there, the phone that my employer gave me has the option to save varios mobile phone types to each one of your contacts, such as "mobile", "work mobile", "personal mobile".  Although they get syncronized with my iMac's address book they don't show