SQL Developer 1.1 close - no error msg (connect after changed TNS info)

We installed a new QA database and as a result I had to change the connection credentials. After doing this on a connect, SQL Developer closed without any warning.
The following repro steps:
1.) I right click on the connection name and click on Properties
2.) In the New/Save Database Connection dialog I had the following in the Oracle>TNS>Connect Identifier box:
(DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 10.111.xxx.xx)(PORT = 1521)) ) (CONNECT_DATA = (SERVICE_NAME = netqa) ) )
3.) I changed this to the following and then tested the connection (successfully) then clicked Save and Cancel to close the dialog:
(DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 10.111.yyy.yyy)(PORT = 1521)) ) (CONNECT_DATA = (SERVICE_NAME = netqa) ) )
4.) On the connection name in the tree control, I right click, click on Connect, specified the user name and password and then OK
I then noticed that my SQL Developer application disappeared.
I opened it again and used the Test button which works fine but as soon as I click Connect it also closed the application.
I then had to choose the Basic option to setup the connection info which resolved the problem.
I reproduced this on another connection and got the same thing.
I must mention that I imported these connection from a file I created by exporting the connections from the previous production version.

I am having the same problem. Too bad no one else has replied. Test connnection works and sometimes I get into the application. The first few times I was able to get it to list the object types (tables, views, etc.) though nothing was listed when I tried to explode each list. This could be because the userid I am logging on with has no objects and I haven't figured out how to make it list all objects as I can in SQL Navigator or TOAD. Now it seems that anytime I try to open one of the connections, the application simply vanishes. No no warning, no messages, it just closes.
I AM trying to use an older unsupported DB version. The first few times when it actually connected to the DB I got a warning message about an unsupported version but now I get nothing. I am starting to think that this is an intentional glitch to punish companies that are still running older versions of their database (out of necessity). If you can connect to non-Oracle data bases it seems like an older Oracle version shouldn't matter.
Anyone else have any clues why the applicatioin just closes without warning?
Config:
Win WP SP2
Installed latest SQLDev 1.1.2 with JDK included.
DB vers. 8.1.74 (?) on AIX

Similar Messages

  • SQL Developer: Failure -Test failed: IO Error: Got minus one from a read ca

    SQL Developer: Failure -Test failed: IO Error: Got minus one from a read call
    Hi,
    I am sorry I know this is probably most frequently asked question, but I have no idea what I should be searching for.
    I looked up the error above to see if i could find a solution, but unfortunately I did not.
    Right Let me start of with I am a Total Noob.. well it terms of having to install Oracle 11g myself.
    In my University they hosted a database, and assigned us a User & pass thats how I have been using SQL Developer,
    but since I am not longer a university student. I need to use Oracle Database.
    So I downloaded Oracle 11g Enterprise Installed it on my laptop that i don't use much.
    Name the Database: Rudu
    It did all the installation, and seemed to have succeeded, I went on to the https://localhost:1158/em (Though am not sure why em? whats the deal with that? I thought it would be https://localhost:1158/Rudu) anyways....
    Logged in using the System user.
    Went to Users and created a user called: RUDUHR
    Thought yeah its working... went on to my other laptop opened up SQL Developer.
    Created Connection with the following Settings
    Con Name: RK
    User: RUDUHR
    Pass: TEST
    Con Type: Basic
    Role: Default
    Hostname: 192.168.0.8
    Port: 1158
    SID: Rudu
    It don't work though Why is that??????
    192.168.0.8 is laptop that has oracle 11g installed and running.
    I even tried using SYSTEM user to connect, but same error
    also tried changing SID to em, it made no difference I keep getting the error Status: Failure -Test failed: IO Error: Got minus one from a read call
    So ya am clueless... LOL I only know how to create tables and stuff not how to configure a Database.
    and just so you know I did forward the port on me router to correct laptop.

    It don't work though Why is that??????
    192.168.0.8 is laptop that has oracle 11g installed and running.
    It is because you don't read documentation.
    1158 is the default port for Enterprise Manager
    1521 is the default port for Sqlnet.
    Your port number is incorrect.
    Needless to say, you can create your tables in EM too.
    As per the Forums Etiquette post (first link when you get to this page) it is recommended you read documentation before asking Yet Another Doc Question.
    Sybrand Bakker
    Senior Oracle DBA

  • SQL Developer: Failure -Test failed: IO Error: Network Adapter No Conn

    SQL Developer: Failure -Test failed: IO Error: The Network Adapter could not establish the connection
    Hi,
    and sorry this is a really common questions and yes I did do a search, but I don't understand it.
    First let me just tell you that Oracle 11g is installed on my second laptop on the same Network.
    Secondly I can connect to the Database using Oracle SQL Developer on the laptop Oracle 11g is installed on.
    The problem is I want to connect to the database on my main Laptop.
    I put in the correct details Hostname 192.168.0.8 ( this is the laptop oracle is installed and running on)
    Port 1521
    SID dbarudu
    ****** YES I HAVE PORT FORWARDED
    ****** YES I HAVE ALLOWED 1521 on the FIREWALL
    ****** YES I HAVE EVEN SWITCHED OFF THE FIREWALL
    Now one more thing you should know ... I don't know nothing about Oracle Servers ok.... so I have just installed Oracle 11g Enterprise and thought done it should be working now.
    I just need to use oracle db for a project.
    So keep in mind I am a total noob and terms like TNSPING etc mean absolutely nothing to me.
    So please help, but help with step by step guide on how to get Oracle to let me have access from another computer.

    If the Listener is working, then you should not get the error SQL-Developer error you are reporting.
    The listener typically runs using the hostname and port 1521. This means it opens tcp port 1521 on all IP addresses of that platform.
    The database server by default will register itself with the local listener. Thus the listener will know the database SID, the database services, whether there are dispatchers to support shared server connections and so on.
    The client side needs simply to specify 3 pieces of data to connect:
    - the IP of the database server
    - the tcp port of the listener
    - a database identifier (such as Oracle SID or service name) to connect to
    It is really that simple.
    If this does not work, the problem falls into 2 broad categories:
    a) incorrect installation and configuration of the Oracle software (the out-of-the-box install works unless messed up)
    b) some kind of networking issue
    To troubleshoot any problem means reducing the complexity of the problem, eliminating multiple moving parts and focusing on specific ones, in order to isolate the problem.
    For your problem, this will go something as follows:
    - does the listener run? (check if the service is running and whether tcp connections are accepted on the listener port - telnet can be used for the latter)
    - does the database successfully registers itself with the listener? (check the services command of the listener and relevant db initialisation parameters)
    - does a local TNS (tcp network) connection work on that server? (use SQL*Plus and test on that platform client-server connectivity via tcp to the listener)
    - does the client platform have connectivity with the server platform? (use ICMP and telnet to test)
    - repeat the TNS test on the client platform using the same working TNS tested on the server platform
    Do not use JDBC to test the connection - keep it simple and use sqlplus and the standard Oracle Call Interface (OCI). A full client version of the OCI plus sqlplus can be downloaded under the Oracle InstantClient downloads.
    Finally - if you expect to simply install and use Oracle, then use the correct version. Oracle Express Edition aka Oracle XE. Installs and works out-of-the-box. The only manual config change to make is (as far as I recall) to run the listener on all IP addresses of that platform. And this required editing the listener.ora file, changing the HOST parameter and restarting the listener.
    Also keep in mind that you have not presented an Oracle error code and Oracle error message. But a client application error message. And that message is pretty much meaningless - it does not point to a specific Oracle networking or Oracle server problem. To diagnose that, we expect a TNS or ORA error number.

  • SQL Developer and Oracle Database 10g Express Edition, Connection Problem

    I am using SQL Developer version 1.2.1 and am connecting to a 10g database on a windows xp.
    Up until today there have been no problems with the connection. When I tried to connect to the database and have not been able to.
    The error states that "...listener refused the connection with the following error: ORA-12505, TNS; listener does not currently know of SID given in connect descriptor..."
    Also tried to log into the database home page but page doesn't load...

    I'd bet the database is down.
    Try a login through sqlplus ("Run SQL Command Line" in the Oracle Express Edition 'Start' menu).
    Do a CONN / AS SYSDBA
    If you get a message about database or memory area not available, try STARTUP.
    If that doesn't work, you are best off in the General Database forum or the Express Edition forum.
    You'll probably get the most expert response in General Database, but the Express Edition forum can be gentler on newbies (as it is more accepted that questioners are not and do not have access to full-time DBAs).

  • SQL Developer Blocked and is not allowed to connect to database ORA-200001

    SQL Developer Blocked and is not allowed to connect to database gives ORA-200001.
    i found on net that DBA can write triggers which can deny connection to database from certain appplication.
    so i want a way to change application name so that when it connects to database
    the V$SESSION will have different value (other than SQL Developer) in column PROGRAM and/or MODULE (which i think is used by dba to restrict the connection).
    one more way is
    i am using jdbc url to connect to database
    in java we can change properties of connection to change the PROGRAM in V$SESSION.
    but i am not java expert so dont know how and where to make the changes
    either way my aim is to connect to database such that V$SESSION will have different value (other than "SQL Developer") in column PROGRAM and/or MODULE

    This is not system configration or credential issue.
    This is a check which is put DBA using logon trigger
    to check certain user loging in using certain application.
    only some users using particular username are getting this error when they try to logon using oracle sql developer
    the same users when uses different username(some generic user names created to access database) to access the same database then they are able to login.
    similarly if they login using SQL navigator they are able to login with both their own and the generic user name
    more over of all the database instances this is only happening on some of the instances and all of them are development instances.
    following will help you understand
    USER | DBUSERNAME | DATABASE | APPLICATION | ACTION
    X | X | DB1 | Oracle Sql Developer | Blocked
    X | G(Genric) | DB1 | Oracle Sql Developer | Login Success
    X | X | DB1 | Sql Navigator/SqlPLus | Login Success
    X | G(Genric) | DB1 | Sql Navigator/SqlPLus | Login Success
    X | X | DB2 | Oracle Sql Developer | Login Success
    X | G(Genric) | DB2 | Oracle Sql Developer | Login Success
    X | X | DB2 | Sql Navigator/SqlPLus | Login Success
    X | G(Genric) | DB2 | Sql Navigator/SqlPLus | Login Success
    I just want to bypass this check which i think uses V$SESSION and columns PROGRAM and/or MODULE to check the application used by particular user.
    if i can override these values some where in oracle sql developer before loging in the DB then i can clearly pass this check and login to database.
    Edited by: user13430736 on Jun 21, 2011 4:05 AM
    Edited by: user13430736 on Jun 21, 2011 4:12 AM

  • Develop tab not working. Error msg "?;0: attempt to perform arithmetic on a string value" Help!

    I continue to get the error msg "?;0: attempt to perform arithmetic on a string value" when clicking on the 'Develop' tab in LR.  I've uninstalled and reinstalled the software 3 times from the original disc.  I'm in the middle of a wedding edit.  Help!

    It sounds like you might have a corrupted preset.
    Here's something you could try:
    Go to your Preferences/Presets tab and push the Show Lightroom Presets Folder button.
    Then close Lightroom and temporarily rename that folder. If the problem goes away, one of your presets is bad. Otherwise name the folder back to what it was and let us know what happened.
    Hal

  • SQL Developer 3.0.04 Trace Errors

    I'm trying to use SQL Developer to format a .trc file that was generated on the DB server but it doesn't appear to be able to parse the file correctly and it's causing a large number of errors to be written to the 'Logging Page' tab. Some examples are:
    Source: oracle.dbtools.raptor.sqltrace.parser.EventExecute
    Message: no match for line:EXEC #5:c=0,e=0,p=0,cr=2,cu=0,mis=0,r=1,dep=0,og=1,plh=0,tim=67318275176203
    Source: oracle.dbtools.raptor.sqltrace.parser.EventFetch
    Message: no match for line:FETCH #1:c=0,e=0,p=0,cr=2,cu=0,mis=0,r=0,dep=1,og=1,plh=1211194531,tim=67318275176203
    Source: oracle.dbtools.raptor.sqltrace.parser.EventParse
    Message: no match for line:PARSE #5:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,plh=0,tim=67318275176203
    Source: oracle.dbtools.raptor.sqltrace.parser.EventWait
    Message: no match for line:WAIT #13: nam='SQL*Net message from client' ela= 176 driver id=1650815232 #bytes=1 p3=0 obj#=-1 tim=67318275177280
    These 4 errors are repeated for different lines thousands of times, essentially nothing that should be in the 'List View' pane is being rendered correctly. I've tried this in both SQL Developer 3.0.4 and 2.1.1. I also tried the versions with the JDK included as well as with my own JDK 1.6.0_26 but I get the same errors no matter what. I'm not finding anyone else with this same problem on either the forum or Metalink so it might be that I'm doing it wrong altogether but the Help indicates that I should be able to take a .trc file and drop it (or open file) into an open window. I've never tried this method before & I'm wondering if anyone has gotten it to work.
    Also, I'm running Windows 7 32 bit with my ORACLE_HOME set to the sqldeveloper install directory (I've tried many combinations of ORACLE_HOME but I get the same errors).
    Thanks,
    Bill

    Hi Bill,
    Thanks for your feedback. Sorry it was not recognized when you originally posted. I have logged an internal bug for this:
    Bug 13578934 - FORUM: TRACE VIEWER ERRORS ON POST-11.1.0.6 DBS DUE TO NEW PLAN HASH VALUE ATTR
    The bug is not a regression, but simply reflects a lack of necessary maintenance in the the trace viewer.
    Regards,
    Gary
    SQL Developer Team

  • Oracle SQL Developer Data Modeler start up error

    Hi All,
    I just downloaded Oracle SQL Developer Data Modeler (2.0.0.57.0) [Released 1 July 2009] by selecting the option "Oracle SQL Developer Data Modeler for Windows (This zip file includes the JRE)"
    After I installed the same and tried to run it by clicking datamodeler.exe, I get the following error message
    "unable to create an instance of the Java virtual machine located at path:..\jdk\jre\bin\client\jvm.dll"
    On the same machine I can successfuly run the Oracle SQL Develper with no errors. My machine is having Windows XP Professional SP3.
    Any ideas? If there was a problem with Java, than the Oracle SQL Developer should also not run. But as stated it runs with out any error but the Oracle SQL Developer Data Modeler gives the above error.
    Regards,
    JAA149

    1 - The above problem has nothing to do with the memmory. I tried on a 400 MB RAM, 900 MB RAM, 1.5 MB RAM & 2 MB RAM with the same arror.
    "unable to create an instance of the Java virtual machine located at path:..\jdk\jre\bin\client\jvm.dll"
    http://i30.tinypic.com/9vkwf6.jpg
    2 - There are two "datamodeler.exe: files
    One is at D:\datamodeler\datamodeler.exe
    2nd is at D:\datamodeler\bin\datamodeler.exe
    The same error occurs with both the files.
    3 - The Oracle SQL Developer Data Modeler version is "Oracle SQL Developer Data Modeler (2.0.0.57.0) [Released 1 July 2009]" and the file I downloaded is "Oracle SQL Developer Data Modeler for Windows (This zip file includes the JRE) - (57M)"
    If I look in "D:\datamodeler\jdk\jre\README.txt" I find
    "Java(TM) Platform, Standard Edition Runtime Environment Version 6"
    If I run "D:\datamodeler\jdk\jre\bin\javacpl.exe" I get
    http://i30.tinypic.com/mt8ocn.jpg
    If I run "D:\datamodeler\jdk\jre\bin\jureg.exe" I get
    http://i28.tinypic.com/30boiyo.jpg
    If i check at the control panle add/remove program
    http://i30.tinypic.com/1428tba.jpg
    If I go to "http://www.java.com/en/download/manual.jsp" and download "jre-6u16-windows-i586-s.exe" and run it.
    If I go to "C:\Program Files\Java\jre6" I find the same files as in "D:\datamodeler\jdk\jre"
    I am able to run Oracle SQL Developer with out any kind of error let alone the above one. But with Oracle SQL Developer Data Modeler I get the above mentioned error no matter what I try.
    As the error states "unable to create an instance of the Java virtual machine located at path:..\jdk\jre\bin\client\jvm.dll". The file "jvm.dll" is located at two places. One at "D:\datamodeler\jdk\jre\bin\client\jvm.dll" and the second at "D:\datamodeler\jdk\jre\bin\server\jvm.dll"
    A similiar problem occurs with JDeveloper with the fllowing solution
    http://forums.oracle.com/forums/thread.jspa?threadID=506339&start=0&tstart=0
    Which states the following
    "hello!
    in the problem with JDeveloper i have a solution. The jdk have a file jvm.dll in the path: jdk/jre/bin/client/jvm.dll this is the problem ... now in the path:jdk/jre/bin/client/ojvm has a file with the same name if you copy and paste this file to the another path, now its works fine your Jdeveloper.
    Jdeveloper use two files to jvm.dll to work one in the folder /client and other in /server copy the same file to the two locations for precaution
    for me work fine thanks..."
    I tried to do the same (Copy from client folder to server folder)
    D:\datamodeler\jdk\jre\bin\client\jvm.dll
    COPIED THIS FILE TO
    D:\datamodeler\jdk\jre\bin\server\jvm.dll
    Nada. So I reversed it (copied from server folder to client folder)
    D:\datamodeler\jdk\jre\bin\server\jvm.dll
    COPIED THIS FILE TO
    D:\datamodeler\jdk\jre\bin\client\jvm.dll
    Does not work. So I tried another solution stated at the same forum entry
    "Well,
    i solved the problem by this way :
    <SQLDEVELOPER>/jdev/bin/ide.conf
    In this file, change this line :
    AddVMOption -Xmx512M
    by
    AddVMOption -Xmx256M
    Now, the executable is lauching correctly. No more errors with Java Virtual Machine.
    But is it a good thing to solve it like that ?"
    But the ide.conf file is only at "D:\sqldeveloper\ide\bin\ide.conf" which is for the SQL Developer and not the SQl Developer Data Modeler
    Correct me if I am wrong but
    JRE = Java Run Time Envoirment
    JDK = Java Development Kit
    And Oracle SQL Developer Data Modeler needs JRE and not JDK. In any case I download JDK
    jdk-6u14-javafx-1_2-windows-i586.exe (121,306 KB) and installed it but no succcess.
    I tried every thing except completely re-install my whole PC.
    Any help will be much appreciated.
    Cordially,
    Jawad

  • SQL Developer will not start - no errors, no splash, nothing

    Good morning!
    My company no longer has licenses to use Toad, so all new hires here are instructed to install SQL Developer in order to connect to our Oracle DBs. I happen to have worked here long enough to have Toad, but also have SQL Developer (w/JD2K) in order to guide them through it, troubleshoot, etc.
    Well, now the troubleshooter is in trouble. My own copy of SD no longer starts (it used to, and I had multiple connections set up). Period. I get no splash screen. No error messages. I can't even find processes running in the background (Windows XP, SP2). I can't find logs showing errors. I've changed sqldeveloper.conf to run in debug mode, hoping it would display errors - something, ANYthing - to give me a clue. I've downloaded the latest and greatest zip. I've deleted the "sqldeveloper" folders over and over and unzipped over and over.
    I'm no DBA or Sysadmin, so don't know what other tricks I can try to debug this problem. Basically, if I didn't still have Toad for connecting to our DBs, I'd be hosed. I won't uninstall Toad because it won't be possible to "get it back," so to speak, in case that doesn't help SD run.
    Many thanks in advance for any assistance that can be provided.

    I'm getting something similar. I just got a new work computer and I get the Oracle SQL Developer splash screen briefly before it disappears. The process shows on my XP task manager but not in the applications tab. It worked and still works fine on the old computer. From another post, I thought it may be a display setting, but I seem to be using the Windows Classic Theme (although, I can't verify it because it has been disabled on my PC). I also have several java related entries in the Add Programs Control Panel:
    J2SE Development Kit 5.0 Version 15
    J2SE Runtime Environment 5.0 Update 15 and 6
    Java 2 Runtime Environment SE v1.3.1_01, v1.4.2_01, v1.4.2_03, v1.4.2_06, v1.4.2_08, v1.4.2_11, v1.4.2_13
    Java Web Start
    Java(TM) 6 Update 5
    Here's the output from running C:\Program Files\Oracle\sqldeveloper\sqldeveloper\bin\sqldeveloper.exe:
    SEVERE: jar:/file:/C:/Program%20Files/Oracle/sqldeveloper/sqldeveloper/extension
    s/oracle.dbtools.migration.sqlserver2005.jar!/META-INF/extension.xml:13: Duplica
    te declaration of addin oracle.dbtools.migration.workbench.plugin.SQLServer7Plug
    in. Previously defined in extension oracle.sqldeveloper.migration.sqlserver2005
    Apr 10, 2008 12:47:52 PM javax.ide.extension.ElementVisitor log
    SEVERE: jar:/file:/C:/Program%20Files/Oracle/sqldeveloper/sqldeveloper/extension
    s/oracle.dbtools.migration.sqlserver2005.jar!/META-INF/extension.xml:14: Duplica
    te declaration of addin oracle.dbtools.migration.workbench.plugin.SQLServer2000P
    lugin. Previously defined in extension oracle.sqldeveloper.migration.sqlserver20
    05
    Apr 10, 2008 12:47:52 PM javax.ide.extension.ElementVisitor log
    SEVERE: jar:/file:/C:/Program%20Files/Oracle/sqldeveloper/sqldeveloper/extension
    s/oracle.dbtools.migration.sqlserver2005.jar!/META-INF/extension.xml:15: Duplica
    te declaration of addin oracle.dbtools.migration.workbench.plugin.SQLServer2005P
    lugin. Previously defined in extension oracle.sqldeveloper.migration.sqlserver20
    05
    Apr 10, 2008 12:47:52 PM javax.ide.extension.ElementVisitor log
    SEVERE: jar:/file:/C:/Program%20Files/Oracle/sqldeveloper/sqldeveloper/extension
    s/oracle.dbtools.migration.mysql5.jar!/META-INF/extension.xml:13: Duplicate decl
    aration of addin oracle.dbtools.migration.workbench.plugin.MySQLPlugin. Previous
    ly defined in extension oracle.sqldeveloper.migration.mysql5
    Apr 10, 2008 12:47:52 PM javax.ide.extension.ElementVisitor log
    SEVERE: jar:/file:/C:/Program%20Files/Oracle/sqldeveloper/sqldeveloper/extension
    s/oracle.dbtools.migration.mysql5.jar!/META-INF/extension.xml:14: Duplicate decl
    aration of addin oracle.dbtools.migration.workbench.plugin.MySQL4Plugin. Previou
    sly defined in extension oracle.sqldeveloper.migration.mysql5
    Apr 10, 2008 12:47:52 PM javax.ide.extension.ElementVisitor log
    SEVERE: jar:/file:/C:/Program%20Files/Oracle/sqldeveloper/sqldeveloper/extension
    s/oracle.dbtools.migration.mysql5.jar!/META-INF/extension.xml:15: Duplicate decl
    aration of addin oracle.dbtools.migration.workbench.plugin.MySQL5Plugin. Previou
    sly defined in extension oracle.sqldeveloper.migration.mysql5
    Apr 10, 2008 12:47:52 PM javax.ide.extension.ElementVisitor log
    SEVERE: jar:/file:/C:/Program%20Files/Oracle/sqldeveloper/sqldeveloper/extension
    s/oracle.dbtools.thirdparty.access.jar!/META-INF/extension.xml:13: Duplicate dec
    laration of addin oracle.dbtools.thirdparty.access.AccessBrowserAddin. Previousl
    y defined in extension oracle.sqldeveloper.thirdparty.access
    Apr 10, 2008 12:47:52 PM javax.ide.extension.ElementVisitor log
    SEVERE: jar:/file:/C:/Program%20Files/Oracle/sqldeveloper/sqldeveloper/extension
    s/oracle.sqldeveloper.thirdparty.mysql.jar!/META-INF/extension.xml:12: Duplicate
    declaration of addin oracle.dbtools.thirdparty.mysql.MySQLBrowserAddin. Previou
    sly defined in extension oracle.dbtools.thirdparty.mysql
    java.lang.NullPointerException
    at com.sun.java.swing.plaf.windows.XPStyle.getString(XPStyle.java:132)
    at com.sun.java.swing.plaf.windows.XPStyle.getString(XPStyle.java:115)
    at com.sun.java.swing.plaf.windows.XPStyle.<init>(XPStyle.java:811)
    at com.sun.java.swing.plaf.windows.XPStyle.getXP(XPStyle.java:82)
    at com.sun.java.swing.plaf.windows.WindowsTreeUI$ExpandedIcon.<init>(Win
    dowsTreeUI.java:103)
    at com.sun.java.swing.plaf.windows.WindowsTreeUI$ExpandedIcon.createExpa
    ndedIcon(WindowsTreeUI.java:107)
    at com.sun.java.swing.plaf.windows.WindowsLookAndFeel.initComponentDefau
    lts(WindowsLookAndFeel.java:313)
    at javax.swing.plaf.basic.BasicLookAndFeel.getDefaults(BasicLookAndFeel.
    java:97)
    at oracle.javatools.ui.internal.theme.SkyBluer.getDefaultFont(SkyBluer.j
    ava:171)
    at oracle.javatools.ui.internal.theme.SkyBluer.getUserTextFont(SkyBluer.
    java:82)
    at javax.swing.plaf.metal.MetalLookAndFeel$FontActiveValue.createValue(M
    etalLookAndFeel.java:1684)
    at javax.swing.UIDefaults.getFromHashtable(UIDefaults.java:200)
    at javax.swing.UIDefaults.get(UIDefaults.java:130)
    at javax.swing.UIDefaults.getFont(UIDefaults.java:350)
    at com.jgoodies.looks.plastic.PlasticLookAndFeel.initComponentDefaults(P
    lasticLookAndFeel.java:366)
    at com.jgoodies.looks.plastic.Plastic3DLookAndFeel.initComponentDefaults
    (Plastic3DLookAndFeel.java:75)
    at com.jgoodies.looks.plastic.PlasticXPLookAndFeel.initComponentDefaults
    (PlasticXPLookAndFeel.java:106)
    at oracle.bali.ewt.olaf2.OracleLookAndFeel.initComponentDefaults(Unknown
    Source)
    at javax.swing.plaf.basic.BasicLookAndFeel.getDefaults(BasicLookAndFeel.
    java:97)
    at javax.swing.plaf.metal.MetalLookAndFeel.getDefaults(MetalLookAndFeel.
    java:1392)
    at javax.swing.UIManager.setLookAndFeel(UIManager.java:441)
    at javax.swing.UIManager.setLookAndFeel(UIManager.java:481)
    at oracle.ideimpl.IdeUIManagerImpl._setLookAndFeel(IdeUIManagerImpl.java
    :518)
    at oracle.ideimpl.IdeUIManagerImpl._setDefaultLookAndFeel(IdeUIManagerIm
    pl.java:465)
    at oracle.ideimpl.IdeUIManagerImpl.setLookAndFeel(IdeUIManagerImpl.java:
    243)
    at oracle.ideimpl.DefaultIdeCore.initializeLookAndFeel(DefaultIdeCore.ja
    va:86)
    at oracle.ide.IdeCore.startupImpl(IdeCore.java:1447)
    at oracle.ide.Ide.startup(Ide.java:662)
    at oracle.ideimpl.DefaultIdeStarter.startIde(DefaultIdeStarter.java:35)
    at oracle.ideimpl.Main.start(Main.java:110)
    at oracle.ideimpl.Main.main(Main.java:72)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.ide.boot.PCLMain.callMain(PCLMain.java:66)
    at oracle.ide.boot.PCLMain.main(PCLMain.java:58)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.classloader.util.MainClass.invoke(MainClass.java:128)
    at oracle.ide.boot.IdeLauncher.bootClassLoadersAndMain(IdeLauncher.java:
    190)
    at oracle.ide.boot.IdeLauncher.launchImpl(IdeLauncher.java:90)
    at oracle.ide.boot.IdeLauncher.launch(IdeLauncher.java:66)
    at oracle.ide.boot.IdeLauncher.main(IdeLauncher.java:55)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.ide.boot.Launcher.invokeMain(Launcher.java:729)
    at oracle.ide.boot.Launcher.launchImpl(Launcher.java:115)
    at oracle.ide.boot.Launcher.launch(Launcher.java:68)
    at oracle.ide.boot.Launcher.main(Launcher.java:57)
    UIDefaults.getUI() failed: no ComponentUI class for: oracle.ide.controls.StatusB
    arControl$JDevStatusBar[,0,0,0x0,invalid,alignmentX=0.0,alignmentY=0.0,border=,f
    lags=0,maximumSize=,minimumSize=,preferredSize=]
    java.lang.Error
    at javax.swing.UIDefaults.getUIError(UIDefaults.java:691)
    at javax.swing.MultiUIDefaults.getUIError(MultiUIDefaults.java:117)
    at javax.swing.UIDefaults.getUI(UIDefaults.java:721)
    at javax.swing.UIManager.getUI(UIManager.java:860)
    at oracle.bali.ewt.statusBar.StatusBar.updateUI(Unknown Source)
    at oracle.bali.ewt.statusBar.StatusBar.<init>(Unknown Source)
    at oracle.ide.controls.StatusBarControl$JDevStatusBar.<init>(StatusBarCo
    ntrol.java:274)
    at oracle.ide.controls.StatusBarControl.$init$(StatusBarControl.java:48)
    at oracle.ide.controls.StatusBarControl.<init>(StatusBarControl.java:61)
    at oracle.ide.IdeMainWindow.createStatusBar(IdeMainWindow.java:546)
    at oracle.ideimpl.MainWindowImpl.createStatusBar(MainWindowImpl.java:670
    at oracle.ide.IdeMainWindow.getStatusBar(IdeMainWindow.java:522)
    at oracle.ideimpl.MainWindowImpl.<init>(MainWindowImpl.java:189)
    at oracle.ideimpl.DefaultIdeCore.createMainWindow(DefaultIdeCore.java:36
    7)
    at oracle.ideimpl.DefaultIdeCore.createCoreModules(DefaultIdeCore.java:1
    17)
    at oracle.ideimpl.DefaultIdeCore.createCoreModules(DefaultIdeCore.java:1
    07)
    at oracle.ide.IdeCore.startupImpl(IdeCore.java:1461)
    at oracle.ide.Ide.startup(Ide.java:662)
    at oracle.ideimpl.DefaultIdeStarter.startIde(DefaultIdeStarter.java:35)
    at oracle.ideimpl.Main.start(Main.java:110)
    at oracle.ideimpl.Main.main(Main.java:72)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.ide.boot.PCLMain.callMain(PCLMain.java:66)
    at oracle.ide.boot.PCLMain.main(PCLMain.java:58)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.classloader.util.MainClass.invoke(MainClass.java:128)
    at oracle.ide.boot.IdeLauncher.bootClassLoadersAndMain(IdeLauncher.java:
    190)
    at oracle.ide.boot.IdeLauncher.launchImpl(IdeLauncher.java:90)
    at oracle.ide.boot.IdeLauncher.launch(IdeLauncher.java:66)
    at oracle.ide.boot.IdeLauncher.main(IdeLauncher.java:55)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.ide.boot.Launcher.invokeMain(Launcher.java:729)
    at oracle.ide.boot.Launcher.launchImpl(Launcher.java:115)
    at oracle.ide.boot.Launcher.launch(Launcher.java:68)
    at oracle.ide.boot.Launcher.main(Launcher.java:57)
    java.lang.NullPointerException
    at oracle.bali.ewt.statusBar.StatusBar._getSplitterWidth(Unknown Source)
    at oracle.bali.ewt.statusBar.StatusBar.updateUI(Unknown Source)
    at oracle.bali.ewt.statusBar.StatusBar.<init>(Unknown Source)
    at oracle.ide.controls.StatusBarControl$JDevStatusBar.<init>(StatusBarCo
    ntrol.java:274)
    at oracle.ide.controls.StatusBarControl.$init$(StatusBarControl.java:48)
    at oracle.ide.controls.StatusBarControl.<init>(StatusBarControl.java:61)
    at oracle.ide.IdeMainWindow.createStatusBar(IdeMainWindow.java:546)
    at oracle.ideimpl.MainWindowImpl.createStatusBar(MainWindowImpl.java:670
    at oracle.ide.IdeMainWindow.getStatusBar(IdeMainWindow.java:522)
    at oracle.ideimpl.MainWindowImpl.<init>(MainWindowImpl.java:189)
    at oracle.ideimpl.DefaultIdeCore.createMainWindow(DefaultIdeCore.java:36
    7)
    at oracle.ideimpl.DefaultIdeCore.createCoreModules(DefaultIdeCore.java:1
    17)
    at oracle.ideimpl.DefaultIdeCore.createCoreModules(DefaultIdeCore.java:1
    07)
    at oracle.ide.IdeCore.startupImpl(IdeCore.java:1461)
    at oracle.ide.Ide.startup(Ide.java:662)
    at oracle.ideimpl.DefaultIdeStarter.startIde(DefaultIdeStarter.java:35)
    at oracle.ideimpl.Main.start(Main.java:110)
    at oracle.ideimpl.Main.main(Main.java:72)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.ide.boot.PCLMain.callMain(PCLMain.java:66)
    at oracle.ide.boot.PCLMain.main(PCLMain.java:58)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.classloader.util.MainClass.invoke(MainClass.java:128)
    at oracle.ide.boot.IdeLauncher.bootClassLoadersAndMain(IdeLauncher.java:
    190)
    at oracle.ide.boot.IdeLauncher.launchImpl(IdeLauncher.java:90)
    at oracle.ide.boot.IdeLauncher.launch(IdeLauncher.java:66)
    at oracle.ide.boot.IdeLauncher.main(IdeLauncher.java:55)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.ide.boot.Launcher.invokeMain(Launcher.java:729)
    at oracle.ide.boot.Launcher.launchImpl(Launcher.java:115)
    at oracle.ide.boot.Launcher.launch(Launcher.java:68)
    at oracle.ide.boot.Launcher.main(Launcher.java:57)
    IDE boot startup failed.
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.classloader.util.MainClass.invoke(MainClass.java:128)
    at oracle.ide.boot.IdeLauncher.bootClassLoadersAndMain(IdeLauncher.java:
    190)
    at oracle.ide.boot.IdeLauncher.launchImpl(IdeLauncher.java:90)
    at oracle.ide.boot.IdeLauncher.launch(IdeLauncher.java:66)
    at oracle.ide.boot.IdeLauncher.main(IdeLauncher.java:55)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.ide.boot.Launcher.invokeMain(Launcher.java:729)
    at oracle.ide.boot.Launcher.launchImpl(Launcher.java:115)
    at oracle.ide.boot.Launcher.launch(Launcher.java:68)
    at oracle.ide.boot.Launcher.main(Launcher.java:57)
    Caused by: java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.ide.boot.PCLMain.callMain(PCLMain.java:66)
    at oracle.ide.boot.PCLMain.main(PCLMain.java:58)
    ... 17 more
    Caused by: oracle.ide.ExitNotAllowedException
    at oracle.ide.IdeCore$1.checkExit(IdeCore.java:223)
    at java.lang.Runtime.exit(Runtime.java:88)
    at java.lang.System.exit(System.java:868)
    at oracle.ideimpl.Main.start(Main.java:125)
    at oracle.ideimpl.Main.main(Main.java:72)
    ... 23 more
    Boot startup failed.
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at oracle.ide.boot.Launcher.invokeMain(Launcher.java:729)
    at oracle.ide.boot.Launcher.launchImpl(Launcher.java:115)
    at oracle.ide.boot.Launcher.launch(Launcher.java:68)
    at oracle.ide.boot.Launcher.main(Launcher.java:57)
    Caused by: oracle.ide.ExitNotAllowedException
    at oracle.ide.IdeCore$1.checkExit(IdeCore.java:223)
    at java.lang.Runtime.exit(Runtime.java:88)
    at java.lang.System.exit(System.java:868)
    at oracle.ide.boot.IdeLauncher.launch(IdeLauncher.java:72)
    at oracle.ide.boot.IdeLauncher.main(IdeLauncher.java:55)
    ... 8 more
    ...and here's the output from set:
    APPDATA=C:\Documents and Settings\e0111976\Application Data
    CommonProgramFiles=C:\Program Files\Common Files
    COMPUTERNAME=NCRDU6AZ0111976
    ComSpec=C:\WINDOWS\system32\cmd.exe
    FNDBASE=c:\FNDNT\inst
    FNDINST=CLIENT
    FNDROOT=c:\FNDNT
    FP_NO_HOST_CHECK=NO
    HOMEDRIVE=C:
    HOMEPATH=\
    include=c:\FNDNT\include
    JOINEDDOMAIN=0
    lib=c:\FNDNT\lib
    LOGONSERVER=\\SCARLITNT662
    MDAC=MDAC 2.8 SP1 ON WINDOWS XP SP2
    NUMBER_OF_PROCESSORS=2
    OS=Windows_NT
    OSBuild=5.1.2600.8BXLA
    Path=c:\Program Files\Reflection;C:\oracle\ora92\bin;C:\Program Files\Oracle\jre
    \1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\sy
    stem32\nls;C:\WINDOWS\system32\nls\ENGLISH;c:\FNDNT\bin;c:\FNDNT\DATA;c:\FNDNT\H
    ELP;
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
    PROCESSOR_ARCHITECTURE=x86
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 15 Stepping 13, GenuineIntel
    PROCESSOR_LEVEL=6
    PROCESSOR_REVISION=0f0d
    ProgramFiles=C:\Program Files
    PROMPT=$P$G
    PSTpath_e0111976_1=c:\documents and settings\e0111976\my documents\accomplishmen
    ts2000.pst
    PSTpath_e0111976_10=c:\documents and settings\e0111976\my documents\calendar.pst
    PSTpath_e0111976_100=e:\documents and settings\e0111976\my documents\itbccs_2007
    0630.pst
    PSTpath_e0111976_101=e:\documents and settings\e0111976\my documents\itbccs_2007
    0630a.pst
    PSTpath_e0111976_102=e:\documents and settings\e0111976\my documents\itbccs_2007
    1231.pst
    PSTpath_e0111976_103=e:\documents and settings\e0111976\my documents\itbccs_2008
    0630.pst
    PSTpath_e0111976_104=e:\documents and settings\e0111976\my documents\messagelog2
    0060131.pst
    PSTpath_e0111976_105=e:\documents and settings\e0111976\my documents\messagelog2
    0060228.pst
    PSTpath_e0111976_106=e:\documents and settings\e0111976\my documents\messagelog2
    0060228b.pst
    PSTpath_e0111976_107=e:\documents and settings\e0111976\my documents\messagelog2
    0060331.pst
    PSTpath_e0111976_108=e:\documents and settings\e0111976\my documents\messagelog2
    0060430.pst
    PSTpath_e0111976_109=e:\documents and settings\e0111976\my documents\messagelog2
    0060531.pst
    PSTpath_e0111976_11=c:\documents and settings\e0111976\my documents\calendar2005
    1231.pst
    PSTpath_e0111976_110=e:\documents and settings\e0111976\my documents\messagelog2
    0060630.pst
    PSTpath_e0111976_111=e:\documents and settings\e0111976\my documents\messagelog2
    0060731.pst
    PSTpath_e0111976_112=e:\documents and settings\e0111976\my documents\messagelog2
    0060831.pst
    PSTpath_e0111976_113=e:\documents and settings\e0111976\my documents\messagelog2
    0060930.pst
    PSTpath_e0111976_114=e:\documents and settings\e0111976\my documents\messagelog2
    0061031.pst
    PSTpath_e0111976_115=e:\documents and settings\e0111976\my documents\messagelog2
    0061130.pst
    PSTpath_e0111976_116=e:\documents and settings\e0111976\my documents\messagelog2
    0061231.pst
    PSTpath_e0111976_117=e:\documents and settings\e0111976\my documents\messagelog2
    0070131.pst
    PSTpath_e0111976_118=e:\documents and settings\e0111976\my documents\messagelog2
    0070228.pst
    PSTpath_e0111976_119=e:\documents and settings\e0111976\my documents\messagelog2
    0070331.pst
    PSTpath_e0111976_12=c:\documents and settings\e0111976\my documents\e0111976.pst
    PSTpath_e0111976_120=e:\documents and settings\e0111976\my documents\messagelog2
    0070430.pst
    PSTpath_e0111976_121=e:\documents and settings\e0111976\my documents\messagelog2
    0070531.pst
    PSTpath_e0111976_122=e:\documents and settings\e0111976\my documents\messagelog2
    0070630.pst
    PSTpath_e0111976_123=e:\documents and settings\e0111976\my documents\messagelog2
    0070731.pst
    PSTpath_e0111976_124=e:\documents and settings\e0111976\my documents\messagelog2
    0070831.pst
    PSTpath_e0111976_125=e:\documents and settings\e0111976\my documents\messagelog2
    0070930.pst
    PSTpath_e0111976_126=e:\documents and settings\e0111976\my documents\messagelog2
    0071031.pst
    PSTpath_e0111976_127=e:\documents and settings\e0111976\my documents\messagelog2
    0071130.pst
    PSTpath_e0111976_128=e:\documents and settings\e0111976\my documents\messagelog2
    0071231.pst
    PSTpath_e0111976_129=e:\documents and settings\e0111976\my documents\messagelog2
    0080131.pst
    PSTpath_e0111976_13=c:\documents and settings\e0111976\my documents\fbf.pst
    PSTpath_e0111976_130=e:\documents and settings\e0111976\my documents\messagelog2
    0080229.pst
    PSTpath_e0111976_131=e:\documents and settings\e0111976\my documents\messagelog2
    0080331.pst
    PSTpath_e0111976_132=e:\documents and settings\e0111976\my documents\personal.ps
    t
    PSTpath_e0111976_133=e:\documents and settings\e0111976\my documents\personal200
    6.pst
    PSTpath_e0111976_134=e:\documents and settings\e0111976\my documents\sentitems.p
    st
    PSTpath_e0111976_135=e:\documents and settings\e0111976\my documents\sentitems20
    051031.pst
    PSTpath_e0111976_136=e:\documents and settings\e0111976\my documents\sentitems20
    051130.pst
    PSTpath_e0111976_137=e:\documents and settings\e0111976\my documents\sentitems20
    051231.pst
    PSTpath_e0111976_138=e:\documents and settings\e0111976\my documents\sentitems20
    060331.pst
    PSTpath_e0111976_139=e:\documents and settings\e0111976\my documents\sentitems20
    060630.pst
    PSTpath_e0111976_14=c:\documents and settings\e0111976\my documents\fbf2006.pst
    PSTpath_e0111976_140=e:\documents and settings\e0111976\my documents\sentitems20
    060930.pst
    PSTpath_e0111976_141=e:\documents and settings\e0111976\my documents\sentitems20
    061231.pst
    PSTpath_e0111976_142=e:\documents and settings\e0111976\my documents\sentitems20
    070331.pst
    PSTpath_e0111976_143=e:\documents and settings\e0111976\my documents\sentitems20
    070630.pst
    PSTpath_e0111976_144=e:\documents and settings\e0111976\my documents\sentitems20
    070930.pst
    PSTpath_e0111976_145=e:\documents and settings\e0111976\my documents\sentitems20
    071231.pst
    PSTpath_e0111976_146=e:\documents and settings\e0111976\my documents\sentitems20
    080331.pst
    PSTpath_e0111976_147=e:\documents and settings\e0111976\my documents\summit20050
    930.pst
    PSTpath_e0111976_148=e:\documents and settings\e0111976\my documents\summit20051
    031.pst
    PSTpath_e0111976_149=e:\documents and settings\e0111976\my documents\summit20051
    130.pst
    PSTpath_e0111976_15=c:\documents and settings\e0111976\my documents\it.pst
    PSTpath_e0111976_150=e:\documents and settings\e0111976\my documents\summit20051
    231.pst
    PSTpath_e0111976_151=e:\documents and settings\e0111976\my documents\summit20060
    131.pst
    PSTpath_e0111976_152=e:\documents and settings\e0111976\my documents\summit20060
    228.pst
    PSTpath_e0111976_153=e:\documents and settings\e0111976\my documents\summit20060
    331.pst
    PSTpath_e0111976_154=e:\documents and settings\e0111976\my documents\summit20060
    430.pst
    PSTpath_e0111976_155=e:\documents and settings\e0111976\my documents\summit20060
    930.pst
    PSTpath_e0111976_156=e:\documents and settings\e0111976\my documents\test.pst
    PSTpath_e0111976_157=e:\documents and settings\e0111976\my documents\wwc.pst
    PSTpath_e0111976_158=e:\documents and settings\e0111976\my documents\wwc2006.pst
    PSTpath_e0111976_159=e:\documents and settings\e0111976\my documents\wwc2007.pst
    PSTpath_e0111976_16=c:\documents and settings\e0111976\my documents\it2006.pst
    PSTpath_e0111976_160=e:\documents and settings\e0111976\my documents\messagelog2
    0080430.pst
    PSTpath_e0111976_17=c:\documents and settings\e0111976\my documents\itbccs.pst
    PSTpath_e0111976_18=c:\documents and settings\e0111976\my documents\itbccs_20060
    630.pst
    PSTpath_e0111976_19=c:\documents and settings\e0111976\my documents\itbccs_20061
    231.pst
    PSTpath_e0111976_2=c:\documents and settings\e0111976\my documents\accomplishmen
    ts2001.pst
    PSTpath_e0111976_20=c:\documents and settings\e0111976\my documents\itbccs_20070
    630.pst
    PSTpath_e0111976_21=c:\documents and settings\e0111976\my documents\itbccs_20070
    630a.pst
    PSTpath_e0111976_22=c:\documents and settings\e0111976\my documents\itbccs_20071
    231.pst
    PSTpath_e0111976_23=c:\documents and settings\e0111976\my documents\itbccs_20080
    630.pst
    PSTpath_e0111976_24=c:\documents and settings\e0111976\my documents\messagelog20
    060131.pst
    PSTpath_e0111976_25=c:\documents and settings\e0111976\my documents\messagelog20
    060228.pst
    PSTpath_e0111976_26=c:\documents and settings\e0111976\my documents\messagelog20
    060228b.pst
    PSTpath_e0111976_27=c:\documents and settings\e0111976\my documents\messagelog20
    060331.pst
    PSTpath_e0111976_28=c:\documents and settings\e0111976\my documents\messagelog20
    060430.pst
    PSTpath_e0111976_29=c:\documents and settings\e0111976\my documents\messagelog20
    060531.pst
    PSTpath_e0111976_3=c:\documents and settings\e0111976\my documents\accomplishmen
    ts2002.pst
    PSTpath_e0111976_30=c:\documents and settings\e0111976\my documents\messagelog20
    060630.pst
    PSTpath_e0111976_31=c:\documents and settings\e0111976\my documents\messagelog20
    060731.pst
    PSTpath_e0111976_32=c:\documents and settings\e0111976\my documents\messagelog20
    060831.pst
    PSTpath_e0111976_33=c:\documents and settings\e0111976\my documents\messagelog20
    060930.pst
    PSTpath_e0111976_34=c:\documents and settings\e0111976\my documents\messagelog20
    061031.pst
    PSTpath_e0111976_35=c:\documents and settings\e0111976\my documents\messagelog20
    061130.pst
    PSTpath_e0111976_36=c:\documents and settings\e0111976\my documents\messagelog20
    061231.pst
    PSTpath_e0111976_37=c:\documents and settings\e0111976\my documents\messagelog20
    070131.pst
    PSTpath_e0111976_38=c:\documents and settings\e0111976\my documents\messagelog20
    070228.pst
    PSTpath_e0111976_39=c:\documents and settings\e0111976\my documents\messagelog20
    070331.pst
    PSTpath_e0111976_4=c:\documents and settings\e0111976\my documents\accomplishmen
    ts2003.pst
    PSTpath_e0111976_40=c:\documents and settings\e0111976\my documents\messagelog20
    070430.pst
    PSTpath_e0111976_41=c:\documents and settings\e0111976\my documents\messagelog20
    070531.pst
    PSTpath_e0111976_42=c:\documents and settings\e0111976\my documents\messagelog20
    070630.pst
    PSTpath_e0111976_43=c:\documents and settings\e0111976\my documents\messagelog20
    070731.pst
    PSTpath_e0111976_44=c:\documents and settings\e0111976\my documents\messagelog20
    070831.pst
    PSTpath_e0111976_45=c:\documents and settings\e0111976\my documents\messagelog20
    070930.pst
    PSTpath_e0111976_46=c:\documents and settings\e0111976\my documents\messagelog20
    071031.pst
    PSTpath_e0111976_47=c:\documents and settings\e0111976\my documents\messagelog20
    071130.pst
    PSTpath_e0111976_48=c:\documents and settings\e0111976\my documents\messagelog20
    071231.pst
    PSTpath_e0111976_49=c:\documents and settings\e0111976\my documents\messagelog20
    080131.pst
    PSTpath_e0111976_5=c:\documents and settings\e0111976\my documents\alarmpoint.ps
    t
    PSTpath_e0111976_50=c:\documents and settings\e0111976\my documents\messagelog20
    080229.pst
    PSTpath_e0111976_51=c:\documents and settings\e0111976\my documents\messagelog20
    080331.pst
    PSTpath_e0111976_52=c:\documents and settings\e0111976\my documents\messagelog20
    080430.pst
    PSTpath_e0111976_53=c:\documents and settings\e0111976\my documents\personal.pst
    PSTpath_e0111976_54=c:\documents and settings\e0111976\my documents\personal2006
    .pst
    PSTpath_e0111976_55=c:\documents and settings\e0111976\my documents\sentitems.ps
    t
    PSTpath_e0111976_56=c:\documents and settings\e0111976\my documents\sentitems200
    51031.pst
    PSTpath_e0111976_57=c:\documents and settings\e0111976\my documents\sentitems200
    51130.pst
    PSTpath_e0111976_58=c:\documents and settings\e0111976\my documents\sentitems200
    51231.pst
    PSTpath_e0111976_59=c:\documents and settings\e0111976\my documents\sentitems200
    60331.pst
    PSTpath_e0111976_6=c:\documents and settings\e0111976\my documents\asynch.pst
    PSTpath_e0111976_60=c:\documents and settings\e0111976\my documents\sentitems200
    60630.pst
    PSTpath_e0111976_61=c:\documents and settings\e0111976\my documents\sentitems200
    60930.pst
    PSTpath_e0111976_62=c:\documents and settings\e0111976\my documents\sentitems200
    61231.pst
    PSTpath_e0111976_63=c:\documents and settings\e0111976\my documents\sentitems200
    70331.pst
    PSTpath_e0111976_64=c:\documents and settings\e0111976\my documents\sentitems200
    70630.pst
    PSTpath_e0111976_65=c:\documents and settings\e0111976\my documents\sentitems200
    70930.pst
    PSTpath_e0111976_66=c:\documents and settings\e0111976\my documents\sentitems200
    71231.pst
    PSTpath_e0111976_67=c:\documents and settings\e0111976\my documents\sentitems200
    80331.pst
    PSTpath_e0111976_68=c:\documents and settings\e0111976\my documents\summit200509
    30.pst
    PSTpath_e0111976_69=c:\documents and settings\e0111976\my documents\summit200510
    31.pst
    PSTpath_e0111976_7=c:\documents and settings\e0111976\my documents\asynchnew.pst
    PSTpath_e0111976_70=c:\documents and settings\e0111976\my documents\summit200511
    30.pst
    PSTpath_e0111976_71=c:\documents and settings\e0111976\my documents\summit200512
    31.pst
    PSTpath_e0111976_72=c:\documents and settings\e0111976\my documents\summit200601
    31.pst
    PSTpath_e0111976_73=c:\documents and settings\e0111976\my documents\summit200602
    28.pst
    PSTpath_e0111976_74=c:\documents and settings\e0111976\my documents\summit200603
    31.pst
    PSTpath_e0111976_75=c:\documents and settings\e0111976\my documents\summit200604
    30.pst
    PSTpath_e0111976_76=c:\documents and settings\e0111976\my documents\summit200609
    30.pst
    PSTpath_e0111976_77=c:\documents and settings\e0111976\my documents\test.pst
    PSTpath_e0111976_78=c:\documents and settings\e0111976\my documents\wwc.pst
    PSTpath_e0111976_79=c:\documents and settings\e0111976\my documents\wwc2006.pst
    PSTpath_e0111976_8=c:\documents and settings\e0111976\my documents\asynchnotes.p
    st
    PSTpath_e0111976_80=c:\documents and settings\e0111976\my documents\wwc2007.pst
    PSTpath_e0111976_81=e:\documents and settings\e0111976\my documents\accomplishme
    nts2000.pst
    PSTpath_e0111976_82=e:\documents and settings\e0111976\my documents\accomplishme
    nts2001.pst
    PSTpath_e0111976_83=e:\documents and settings\e0111976\my documents\accomplishme
    nts2002.pst
    PSTpath_e0111976_84=e:\documents and settings\e0111976\my documents\accomplishme
    nts2003.pst
    PSTpath_e0111976_85=e:\documents and settings\e0111976\my documents\alarmpoint.p
    st
    PSTpath_e0111976_86=e:\documents and settings\e0111976\my documents\asynch.pst
    PSTpath_e0111976_87=e:\documents and settings\e0111976\my documents\asynchnew.ps
    t
    PSTpath_e0111976_88=e:\documents and settings\e0111976\my documents\asynchnotes.
    pst
    PSTpath_e0111976_89=e:\documents and settings\e0111976\my documents\billingmeeti
    ngnotes.pst
    PSTpath_e0111976_9=c:\documents and settings\e0111976\my documents\billingmeetin
    gnotes.pst
    PSTpath_e0111976_90=e:\documents and settings\e0111976\my documents\calendar.pst
    PSTpath_e0111976_91=e:\documents and settings\e0111976\my documents\calendar2005
    1231.pst
    PSTpath_e0111976_92=e:\documents and settings\e0111976\my documents\e0111976.pst
    PSTpath_e0111976_93=e:\documents and settings\e0111976\my documents\fbf.pst
    PSTpath_e0111976_94=e:\documents and settings\e0111976\my documents\fbf2006.pst
    PSTpath_e0111976_95=e:\documents and settings\e0111976\my documents\it.pst
    PSTpath_e0111976_96=e:\documents and settings\e0111976\my documents\it2006.pst
    PSTpath_e0111976_97=e:\documents and settings\e0111976\my documents\itbccs.pst
    PSTpath_e0111976_98=e:\documents and settings\e0111976\my documents\itbccs_20060
    630.pst
    PSTpath_e0111976_99=e:\documents and settings\e0111976\my documents\itbccs_20061
    231.pst
    PSTsizeMB_e0111976_1=224
    PSTsizeMB_e0111976_10=6128
    PSTsizeMB_e0111976_100=265
    PSTsizeMB_e0111976_101=2001
    PSTsizeMB_e0111976_102=7457
    PSTsizeMB_e0111976_103=2001
    PSTsizeMB_e0111976_104=39920
    PSTsizeMB_e0111976_105=43104
    PSTsizeMB_e0111976_106=15040
    PSTsizeMB_e0111976_107=45264
    PSTsizeMB_e0111976_108=21216
    PSTsizeMB_e0111976_109=27472
    PSTsizeMB_e0111976_11=7344
    PSTsizeMB_e0111976_110=25232
    PSTsizeMB_e0111976_111=21664
    PSTsizeMB_e0111976_112=25248
    PSTsizeMB_e0111976_113=14153
    PSTsizeMB_e0111976_114=28704
    PSTsizeMB_e0111976_115=14560
    PSTsizeMB_e0111976_116=17328
    PSTsizeMB_e0111976_117=19072
    PSTsizeMB_e0111976_118=19952
    PSTsizeMB_e0111976_119=24880
    PSTsizeMB_e0111976_12=96
    PSTsizeMB_e0111976_120=21568
    PSTsizeMB_e0111976_121=30896
    PSTsizeMB_e0111976_122=68896
    PSTsizeMB_e0111976_123=18272
    PSTsizeMB_e0111976_124=21841
    PSTsizeMB_e0111976_125=17625
    PSTsizeMB_e0111976_126=27793
    PSTsizeMB_e0111976_127=21841
    PSTsizeMB_e0111976_128=25809
    PSTsizeMB_e0111976_129=19361
    PSTsizeMB_e0111976_13=27088
    PSTsizeMB_e0111976_130=23825
    PSTsizeMB_e0111976_131=33745
    PSTsizeMB_e0111976_132=51760
    PSTsizeMB_e0111976_133=10720
    PSTsizeMB_e0111976_134=393280
    PSTsizeMB_e0111976_135=45248
    PSTsizeMB_e0111976_136=14512
    PSTsizeMB_e0111976_137=6400
    PSTsizeMB_e0111976_138=39280
    PSTsizeMB_e0111976_139=7168
    PSTsizeMB_e0111976_14=1632
    PSTsizeMB_e0111976_140=8736
    PSTsizeMB_e0111976_141=7209
    PSTsizeMB_e0111976_142=7457
    PSTsizeMB_e0111976_143=13161
    PSTsizeMB_e0111976_144=4977
    PSTsizeMB_e0111976_145=9193
    PSTsizeMB_e0111976_146=2745
    PSTsizeMB_e0111976_147=14720
    PSTsizeMB_e0111976_148=19344
    PSTsizeMB_e0111976_149=17072
    PSTsizeMB_e0111976_15=6713
    PSTsizeMB_e0111976_150=13744
    PSTsizeMB_e0111976_151=13088
    PSTsizeMB_e0111976_152=17536
    PSTsizeMB_e0111976_153=15680
    PSTsizeMB_e0111976_154=5168
    PSTsizeMB_e0111976_155=13472
    PSTsizeMB_e0111976_156=265
    PSTsizeMB_e0111976_157=6096
    PSTsizeMB_e0111976_158=32960
    PSTsizeMB_e0111976_159=15145
    PSTsizeMB_e0111976_16=6768
    PSTsizeMB_e0111976_160=4977
    PSTsizeMB_e0111976_17=36080
    PSTsizeMB_e0111976_18=133232
    PSTsizeMB_e0111976_19=10784
    PSTsizeMB_e0111976_2=224
    PSTsizeMB_e0111976_20=265
    PSTsizeMB_e0111976_21=2001
    PSTsizeMB_e0111976_22=7457
    PSTsizeMB_e0111976_23=2001
    PSTsizeMB_e0111976_24=39920
    PSTsizeMB_e0111976_25=43104
    PSTsizeMB_e0111976_26=15040
    PSTsizeMB_e0111976_27=45264
    PSTsizeMB_e0111976_28=21216
    PSTsizeMB_e0111976_29=27472
    PSTsizeMB_e0111976_3=265
    PSTsizeMB_e0111976_30=25232
    PSTsizeMB_e0111976_31=21664
    PSTsizeMB_e0111976_32=25248
    PSTsizeMB_e0111976_33=14153
    PSTsizeMB_e0111976_34=28704
    PSTsizeMB_e0111976_35=14560
    PSTsizeMB_e0111976_36=17328
    PSTsizeMB_e0111976_37=19072
    PSTsizeMB_e0111976_38=19952
    PSTsizeMB_e0111976_39=24880
    PSTsizeMB_e0111976_4=288
    PSTsizeMB_e0111976_40=21568
    PSTsizeMB_e0111976_41=30896
    PSTsizeMB_e0111976_42=68896
    PSTsizeMB_e0111976_43=18272
    PSTsizeMB_e0111976_44=21841
    PSTsizeMB_e0111976_45=17625
    PSTsizeMB_e0111976_46=27793
    PSTsizeMB_e0111976_47=21841
    PSTsizeMB_e0111976_48=25809
    PSTsizeMB_e0111976_49=19361
    PSTsizeMB_e0111976_5=57553
    PSTsizeMB_e0111976_50=23825
    PSTsizeMB_e0111976_51=33745
    PSTsizeMB_e0111976_52=4977
    PSTsizeMB_e0111976_53=51760
    PSTsizeMB_e0111976_54=10720
    PSTsizeMB_e0111976_55=393280
    PSTsizeMB_e0111976_56=45248
    PSTsizeMB_e0111976_57=14512
    PSTsizeMB_e0111976_58=6400
    PSTsizeMB_e0111976_59=39280
    PSTsizeMB_e0111976_6=167664
    PSTsizeMB_e0111976_60=7168
    PSTsizeMB_e0111976_61=8736
    PSTsizeMB_e0111976_62=7209
    PSTsizeMB_e0111976_63=7457
    PSTsizeMB_e0111976_64=13161
    PSTsizeMB_e0111976_65=4977
    PSTsizeMB_e0111976_66=9193
    PSTsizeMB_e0111976_67=2745
    PSTsizeMB_e0111976_68=14720
    PSTsizeMB_e0111976_69=19344
    PSTsizeMB_e0111976_7=23825
    PSTsizeMB_e0111976_70=17072
    PSTsizeMB_e0111976_71=13744
    PSTsizeMB_e0111976_72=13088
    PSTsizeMB_e0111976_73=17536
    PSTsizeMB_e0111976_74=15680
    PSTsizeMB_e0111976_75=5168
    PSTsizeMB_e0111976_76=13472
    PSTsizeMB_e0111976_77=265
    PSTsizeMB_e0111976_78=6096
    PSTsizeMB_e0111976_79=32960
    PSTsizeMB_e0111976_8=544
    PSTsizeMB_e0111976_80=15145
    PSTsizeMB_e0111976_81=224
    PSTsizeMB_e0111976_82=224
    PSTsizeMB_e0111976_83=265
    PSTsizeMB_e0111976_84=288
    PSTsizeMB_e0111976_85=57553
    PSTsizeMB_e0111976_86=167664
    PSTsizeMB_e0111976_87=23825
    PSTsizeMB_e0111976_88=544
    PSTsizeMB_e0111976_89=400
    PSTsizeMB_e0111976_9=400
    PSTsizeMB_e0111976_90=6128
    PSTsizeMB_e0111976_91=7344
    PSTsizeMB_e0111976_92=96
    PSTsizeMB_e0111976_93=27088
    PSTsizeMB_e0111976_94=1632
    PSTsizeMB_e0111976_95=6713
    PSTsizeMB_e0111976_96=6768
    PSTsizeMB_e0111976_97=36080
    PSTsizeMB_e0111976_98=133232
    PSTsizeMB_e0111976_99=10784
    RunKeys=SunJavaUpdateSched
    secedit=GOOD
    SESSIONNAME=Console
    sfcp42bExec=1
    sfcp42bIns=1
    SystemDrive=C:
    SystemRoot=C:\WINDOWS
    TEMP=C:\TEMP
    TMP=C:\TEMP
    USERDOMAIN=ALLTEL
    USERNAME=e0111976
    USERPROFILE=C:\Documents and Settings\e0111976
    windir=C:\WINDOWS
    WPS=Not_Installed
    C:\>
    ...and here are the contents of the sqldeveloper.conf file:
    IncludeConfFile ../../ide/bin/ide.conf
    AddVMOption -Dapple.laf.useScreenMenuBar=true
    AddVMOption -Dcom.apple.mrj.application.apple.menu.about.name="SQL_Developer"
    AddVMOption -Dcom.apple.mrj.application.growbox.intrudes=false
    AddVMOption -Dcom.apple.macos.smallTabs=true
    AddVMOption -Doracle.ide.util.AddinPolicyUtils.OVERRIDE_FLAG=true
    AddVMOption -Dsun.java2d.ddoffscreen=false
    AddVMOption -Dwindows.shell.font.languages=
    AddVMOption -XX:MaxPermSize=128M
    IncludeConfFile sqldeveloper-nondebug.conf
    Any help would be greatly appreciated. Thanks in advance.
    Scott

  • Import bug (fatal error): SQL Developer 4.1EA2 drops destination table upon rollback after error

    I created a table in the worksheet and then I tried to import data into is using SQL Developer EA2. After error is raised, I was presented with the error on the screenshot below. (Note: Rightmost button stands for "Cancel") By choosing cancel (i.e. Click cancel to cancel and rollback.) my destination table is dropped to recycle bin. Rollback should not undo any DDL even when the table was created using the import wizard. But purging a table that was not created by the import wizard is a fatal error.
    Steps to reproduce:
    create the destination table from worksheet and check if it was created:
    column table_name format a21
    create table test_imp_rollback_bug(dummy number(2));
    insert into test_imp_rollback_bug values (-1);
    commit;
    select table_name from user_tables where table_name='TEST_IMP_ROLLBACK_BUG';
    --Result:
    TABLE_NAME
    TEST_IMP_ROLLBACK_BUG
    import CSV using the import settings attached, To achieve this, utilize the new Restore state of the SQL Developer's import wizard. Note: you might need to adjust schema of the destination table.
    test_imp_rollback_bug_numbers.csv
    test_imp_rollback_bug-import_settings.sdimp
    Upon "Insert failed for rows  1  through  50 " message presented, click Cancel.
    The table does not exists any more:
    select table_name from user_tables where table_name='TEST_IMP_ROLLBACK_BUG';
    --Result:
    no rows selected
    Edit (jmarton, 2015-04-26):
    Software versions used:
    SQL Developer version: 4.1.0.18.37
    Oracle JDK: 1.8.0_31, 64bit, Linux
    Instant client: linux.x64-12.1.0.2.0
    Database: 12cR1 12.1.0.2.0 64bit, Linux, EE, CDB-install

    select table_name from user_tables where table_name='TEST_IMP_ROLLBACK_BUG'; 
    --Result: 
    no rows selected
    >>Note: you might need to adjust schema of the destination table.
    A rollback won't drop a table. Are you sure the tale isn't there? select from dba_tables or all_tables, assuming you had to change the destination schema as indicated in your test notes.

  • SQL Developer Oracle Database 11g XE error

    Hi,
    I'm trying to create a new connection in SQL Developer Version 3.2.20.09 to Oracle Database 11g XE but I keep on encountering the error "Status : Failure -Test failed: IO Error: The Network Adapter could not establish the connection".
    I type the commands below in command prompt.
    lsnrctl stop
    lsnrctl start
    lsnrctl status
    lsnrctl service
    set
    Below are the results in Command Prompt:
    C:\Users\paul.john.s.calzado>lsnrctl stop
    LSNRCTL for 32-bit Windows: Version 11.2.0.2.0 - Production on 05-APR-2013 17:58
    :52
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    32-bit Windows Error: 2: No such file or directory
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=MW74Q2YZ4X4F09.dir.svc.a
    ccenture.com)(PORT=1521)))
    TNS-12545: Connect failed because target host or object does not exist
    TNS-12560: TNS:protocol adapter error
    TNS-00515: Connect failed because target host or object does not exist
    32-bit Windows Error: 1004: Unknown error
    C:\Users\paul.john.s.calzado>lsnrctl start
    LSNRCTL for 32-bit Windows: Version 11.2.0.2.0 - Production on 05-APR-2013 17:58
    :57
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Starting tnslsnr: please wait...
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    C:\Users\paul.john.s.calzado>lsnrctl status
    LSNRCTL for 32-bit Windows: Version 11.2.0.2.0 - Production on 05-APR-2013 17:59
    :01
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    32-bit Windows Error: 2: No such file or directory
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=MW74Q2YZ4X4F09.dir.svc.a
    ccenture.com)(PORT=1521)))
    TNS-12545: Connect failed because target host or object does not exist
    TNS-12560: TNS:protocol adapter error
    TNS-00515: Connect failed because target host or object does not exist
    32-bit Windows Error: 1004: Unknown error
    C:\Users\paul.john.s.calzado>lsnrctl service
    LSNRCTL for 32-bit Windows: Version 11.2.0.2.0 - Production on 05-APR-2013 17:59
    :05
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    TNS-12541: TNS:no listener
    TNS-12560: TNS:protocol adapter error
    TNS-00511: No listener
    32-bit Windows Error: 2: No such file or directory
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=MW74Q2YZ4X4F09.dir.svc.a
    ccenture.com)(PORT=1521)))
    TNS-12545: Connect failed because target host or object does not exist
    TNS-12560: TNS:protocol adapter error
    TNS-00515: Connect failed because target host or object does not exist
    32-bit Windows Error: 1004: Unknown error
    C:\Users\paul.john.s.calzado>set
    ALLUSERSPROFILE=C:\ProgramData
    APPDATA=C:\Users\paul.john.s.calzado\AppData\Roaming
    CommonProgramFiles=C:\Program Files\Common Files
    CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files
    CommonProgramW6432=C:\Program Files\Common Files
    COMPUTERNAME=MW74Q2YZ4X4F09
    ComSpec=C:\windows\system32\cmd.exe
    FP_NO_HOST_CHECK=NO
    HOMEDRIVE=C:
    HOMEPATH=\Users\paul.john.s.calzado
    LOCALAPPDATA=C:\Users\paul.john.s.calzado\AppData\Local
    LOGONSERVER=\\MRCDC1801
    NUMBER_OF_PROCESSORS=4
    OS=Windows_NT
    Path=C:\oraclexe\app\oracle\product\11.2.0\server\bin;;C:\windows\system32;C:\wi
    ndows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
    PROCESSOR_ARCHITECTURE=AMD64
    PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 37 Stepping 2, GenuineIntel
    PROCESSOR_LEVEL=6
    PROCESSOR_REVISION=2502
    ProgramData=C:\ProgramData
    ProgramFiles=C:\Program Files
    ProgramFiles(x86)=C:\Program Files (x86)
    ProgramW6432=C:\Program Files
    PROMPT=$P$G
    PSModulePath=C:\windows\system32\WindowsPowerShell\v1.0\Modules\
    PUBLIC=C:\Users\Public
    SESSIONNAME=Console
    SYSDRIVE=%SYSTEMFOLDER%
    SystemDrive=C:
    SystemRoot=C:\windows
    TEMP=C:\Users\PAULJO~1.CAL\AppData\Local\Temp
    TMP=C:\Users\PAULJO~1.CAL\AppData\Local\Temp
    UATDATA=C:\windows\SysWOW64\CCM\UATData\D9F8C395-CAB8-491d-B8AC-179A1FE1BE77
    USERDNSDOMAIN=DIR.SVC.ACCENTURE.COM
    USERDOMAIN=DIR
    USERNAME=paul.john.s.calzado
    USERPROFILE=C:\Users\paul.john.s.calzado
    windir=C:\windows
    windows_tracing_flags=3
    windows_tracing_logfile=C:\BVTBin\Tests\installpackage\csilogfile.log
    C:\Users\paul.john.s.calzado>
    Below is the ping results as well:
    C:\Users\paul.john.s.calzado>ping localhost
    Pinging MW74Q2YZ4X4F09.dir.svc.accenture.com [127.0.0.1] with 32 bytes of data:
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Ping statistics for 127.0.0.1:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms
    C:\Users\paul.john.s.calzado>tnsping localhost
    TNS Ping Utility for 32-bit Windows: Version 11.2.0.2.0 - Production on 05-APR-2
    013 18:07:46
    Copyright (c) 1997, 2010, Oracle. All rights reserved.
    Used parameter files:
    C:\oraclexe\app\oracle\product\11.2.0\server\network\admin\sqlnet.ora
    Used HOSTNAME adapter to resolve the alias
    Attempting to contact (DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=))(ADDRESS=(PROTO
    COL=TCP)(HOST=127.0.0.1)(PORT=1521)))
    TNS-12541: TNS:no listener

    JP wrote:
    I type the commands below in command prompt.Use the View local services control panel to start the XETNSListener service, if command line is not working for you.
    >
    lsnrctl stop
    lsnrctl startThose two cmmands, on any recent Win variants, needs a elevated privs command prompt i.e started with Run as administrator...
    to avoid below error.
    C:\Users\paul.john.s.calzado>lsnrctl start
    Starting tnslsnr: please wait...
    TNS-12560: TNS:protocol adapter error
    TNS-00530: Protocol adapter error
    Used HOSTNAME adapter to resolve the alias
    Attempting to contact (DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=))(ADDRESS=(PROTO
    COL=TCP)(HOST=127.0.0.1)(PORT=1521)))
    TNS-12541: TNS:no listenerAs long as you have "no listener", you can't expect to connect from SQL Developer or any other client.

  • Oracle sql developer 1.0.0.15 error

    i have aproblem in sql developer when i tried to make new gallery ....when select file>new>filter by >all item and highlight Database Objects there is no Data Mining PL/SQL Package option. i need it to work because iam using oracle data miner 10.2.0.4.3
    blease give me asolution urgentley.....thanks

    Hi,
    SQL Developer 3.0 EA4 contains a the new Data Miner Workflow based interface.
    The old Data Miner (10.2/11.1) is in maintenance mode going forward.
    This will also mean that we will not porting the old Data Miner PL/SQL Package extension forward to new SQL Developer releases.
    However, you can always generate the pl/sql package directly from Data Miner 10.2/11.2 which will generate a file on your client which you can then edit/run using SQL Developer.
    Data Miner 11.2 offers sql and sql script generation as well, but it is currently limited to the transformation nodes.
    Thanks, Mark

  • Sql developer is freezing and many errors come up when you first launch it.

    These are just the few that have appeared this time when I launch Sql....... How can I solve these Problems As i am a first time user of SQL developer so im not sure how i shud go about it.
    SEVERE     36     0     oracle.ideimpl.extension.AddinManagerImpl     Failed to create addin oracle.dbtools.raptor.timesten.TTAddin
    SEVERE     37     16     oracle.ideimpl.extension.AddinManagerImpl     Failed to create addin oracle.dbtools.raptor.report.addin.ReportAddin
    SEVERE     47     2673     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon mainwindow.normal.bg.image: [Ljava.lang.String;@1c98c1b
    SEVERE     48     44     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon onionskin.normal.bg.image: [Ljava.lang.String;@7dedad
    SEVERE     49     29     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon viewtab.active.bg.image: [Ljava.lang.String;@1a1472d
    SEVERE     50     7     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon scrolltrackv.normal.bg.image: [Ljava.lang.String;@b6994f
    SEVERE     51     22     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon tableheader.normal.bg.image: [Ljava.lang.String;@f0761a
    SEVERE     52     387     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon viewtab.inactive.bg.image: [Ljava.lang.String;@4b29cf
    SEVERE     53     19338     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon tableheader.mouseover.bg.image: [Ljava.lang.String;@1013985                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    941169 wrote:
    These are just the few that have appeared this time when I launch Sql....... How can I solve these Problems As i am a first time user of SQL developer so im not sure how i shud go about it.
    SEVERE     36     0     oracle.ideimpl.extension.AddinManagerImpl     Failed to create addin oracle.dbtools.raptor.timesten.TTAddin
    SEVERE     37     16     oracle.ideimpl.extension.AddinManagerImpl     Failed to create addin oracle.dbtools.raptor.report.addin.ReportAddin
    SEVERE     47     2673     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon mainwindow.normal.bg.image: [Ljava.lang.String;@1c98c1b
    SEVERE     48     44     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon onionskin.normal.bg.image: [Ljava.lang.String;@7dedad
    SEVERE     49     29     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon viewtab.active.bg.image: [Ljava.lang.String;@1a1472d
    SEVERE     50     7     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon scrolltrackv.normal.bg.image: [Ljava.lang.String;@b6994f
    SEVERE     51     22     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon tableheader.normal.bg.image: [Ljava.lang.String;@f0761a
    SEVERE     52     387     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon viewtab.inactive.bg.image: [Ljava.lang.String;@4b29cf
    SEVERE     53     19338     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon tableheader.mouseover.bg.image: [Ljava.lang.String;@1013985
    >These are just the few that have appeared this time when I launch Sql....... How can I solve these Problems As i am a first time user of SQL developer so im not sure how i shud go about it.
    SEVERE     36     0     oracle.ideimpl.extension.AddinManagerImpl     Failed to create addin oracle.dbtools.raptor.timesten.TTAddin
    SEVERE     37     16     oracle.ideimpl.extension.AddinManagerImpl     Failed to create addin oracle.dbtools.raptor.report.addin.ReportAddin
    SEVERE     47     2673     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon mainwindow.normal.bg.image: [Ljava.lang.String;@1c98c1b
    SEVERE     48     44     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon onionskin.normal.bg.image: [Ljava.lang.String;@7dedad
    SEVERE     49     29     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon viewtab.active.bg.image: [Ljava.lang.String;@1a1472d
    SEVERE     50     7     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon scrolltrackv.normal.bg.image: [Ljava.lang.String;@b6994f
    SEVERE     51     22     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon tableheader.normal.bg.image: [Ljava.lang.String;@f0761a
    SEVERE     52     387     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon viewtab.inactive.bg.image: [Ljava.lang.String;@4b29cf
    SEVERE     53     19338     oracle.javatools.ui.themes.ThemeProperties     Failed to load icon tableheader.mouseover.bg.image: [Ljava.lang.String;@1013985
    what is OS name & version?
    Is SQL Developer installed on same system as DB Server
    what is Oracle version to 4 decimal places?
    Are you sure that Oracle RDBMS is actually running? Post proof

  • SQL Developer crashing when opening or testing a connection

    SQL Developer closes abruptly when opening or testing a connection.
    Here's what I do.
    Open SQL Developer.
    Create a connection:
    Connection Name: [some string]
    Username: [username]
    Password: [password]
    Save password: checked
    Oracle tab:
    Connection type: TNS
    Connect Identifier: somedatabasename
    Then I click on "Test" and the application immediately quits. No error messages. The app does the same thing if I save the connection and try to expand its node on the list of connections.
    Mind you, if I use sqlplus like so:
    [username]/[password]@somedatabasename
    It connects just fine.
    I captured the output from the command console after SQL Developer crashed:
    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation. All rights reserved.
    C:\Oracle\product\sqldeveloper\sqldeveloper\bin>sqldeveloper
    _execv() failed, err=2Registered TimesTen
    # A fatal error has been detected by the Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000000006d9f97c5, pid=5480, t
    id=5840
    # JRE version: 6.0_43-b01
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (20.14-b01 mixed mode windows-amd64
    compressed oops)
    # Problematic frame:
    # V [jvm.dll+0x1397c5]
    # An error report file with more information is saved as:
    # C:\Oracle\product\sqldeveloper\sqldeveloper\bin\hs_err_pid5480.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    I am using:
    sqldeveloper 3.2.20.09.87 (64-bit)
    Java 1.6.0_43 (64-bit)
    Windows 7 Enterprise SP1 (64-bit)
    ODAC 11.2.0.3.20 x64
    Please help!
    Edited by: 993662 on Mar 13, 2013 9:10 AM

    @Jim:
    Thanks for your suggestion. After several hours of experimenting, I've managed to fix my problem by copying the ojdbc6.jar from my ODAC installation and replacing the one in [sqldeveloper root]\jdbc\lib
    To whomever has a similar issue: See my original post for what software I was using and their version numbers.
    Edited by: FrostyZoob on Mar 14, 2013 8:11 AM

  • Oracle SQL Developer 1.2  has not Third Party Connection Options?

    I downloaded SQL Developer 1.2 and i try to create a sql server connection, but have problems with jdbc drivers. The documentation refer to :
    1. In SQL Developer choose Tools -> Preferences...
    2. Expand the "Database" option in the left hand tree
    3. Click on "Third Party JDBC Drivers"
    4. Click on "Add Entry..."
    5. Navigate to your third party driver jar file and choose OK
    This option is not.
    I need help...
    Thank you.

    Only if try to access <PL/SQL Compiler Options> and <PL/SQL Debugger>.
    See in the following blocks.
    PL/SQL Compiler Options
    Error Details
    [java.lang.NullPointerException
         at oracle.dbtools.raptor.config.PlSqlCompilerOptionsPanel.onEntry(PlSqlCompilerOptionsPanel.java:35)
         at oracle.ide.panels.MDDPanel.enterTraversableImpl(MDDPanel.java:921)
         at oracle.ide.panels.MDDPanel.enterTraversable(MDDPanel.java:894)
         at oracle.ide.panels.MDDPanel.mav$enterTraversable(MDDPanel.java:104)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelectedNavigable(MDDPanel.java:1343)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelection(MDDPanel.java:1211)
         at oracle.ide.panels.MDDPanel$Tsl.actionPerformed(MDDPanel.java:1205)
         at javax.swing.Timer.fireActionPerformed(Timer.java:271)
         at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:153)
         at java.awt.Dialog$1.run(Dialog.java:515)
         at java.awt.Dialog.show(Dialog.java:536)
         at java.awt.Component.show(Component.java:1300)
         at java.awt.Component.setVisible(Component.java:1253)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.ide.dialogs.WizardLauncher.runDialog(WizardLauncher.java:55)
         at oracle.ide.panels.TDialogLauncher.showDialog(TDialogLauncher.java:202)
         at oracle.ide.config.IdeSettings.showDialog(IdeSettings.java:795)
         at oracle.ide.config.IdeSettings.showDialog(IdeSettings.java:580)
         at oracle.ide.cmd.IdeSettingsCommand.doit(IdeSettingsCommand.java:47)
         at oracle.ide.controller.CommandProcessor.invoke(CommandProcessor.java:265)
         at oracle.ide.controller.IdeAction.performAction(IdeAction.java:571)
         at oracle.ide.controller.IdeAction$2.run(IdeAction.java:804)
         at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:823)
         at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:521)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:302)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1000)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1041)
         at java.awt.Component.processMouseEvent(Component.java:5488)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
         at java.awt.Component.processEvent(Component.java:5253)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)]
    PL/SQL Debugger
    Error Details
    [java.lang.NullPointerException
         at oracle.dbtools.raptor.config.PlSqlCompilerOptionsPanel.onExit(PlSqlCompilerOptionsPanel.java:41)
         at oracle.ide.panels.MDDPanel.exitTraversable(MDDPanel.java:972)
         at oracle.ide.panels.MDDPanel.mav$exitTraversable(MDDPanel.java:104)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelectedNavigable(MDDPanel.java:1267)
         at oracle.ide.panels.MDDPanel$Tsl.updateSelection(MDDPanel.java:1211)
         at oracle.ide.panels.MDDPanel$Tsl.actionPerformed(MDDPanel.java:1205)
         at javax.swing.Timer.fireActionPerformed(Timer.java:271)
         at javax.swing.Timer$DoPostEvent.run(Timer.java:201)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:153)
         at java.awt.Dialog$1.run(Dialog.java:515)
         at java.awt.Dialog.show(Dialog.java:536)
         at java.awt.Component.show(Component.java:1300)
         at java.awt.Component.setVisible(Component.java:1253)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.bali.ewt.dialog.JEWTDialog.runDialog(Unknown Source)
         at oracle.ide.dialogs.WizardLauncher.runDialog(WizardLauncher.java:55)
         at oracle.ide.panels.TDialogLauncher.showDialog(TDialogLauncher.java:202)
         at oracle.ide.config.IdeSettings.showDialog(IdeSettings.java:795)
         at oracle.ide.config.IdeSettings.showDialog(IdeSettings.java:580)
         at oracle.ide.cmd.IdeSettingsCommand.doit(IdeSettingsCommand.java:47)
         at oracle.ide.controller.CommandProcessor.invoke(CommandProcessor.java:265)
         at oracle.ide.controller.IdeAction.performAction(IdeAction.java:571)
         at oracle.ide.controller.IdeAction$2.run(IdeAction.java:804)
         at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:823)
         at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:521)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:302)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1000)
         at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1041)
         at java.awt.Component.processMouseEvent(Component.java:5488)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
         at java.awt.Component.processEvent(Component.java:5253)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3955)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1774)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)]

Maybe you are looking for

  • Safari continues to shut down unexpectedly

    Hi all! Recently, at least once a day Safari is closing randomly on me. I read that it could be due to Norton, so I uninstalled all Norton products on my Mac. Yet again, it happened today. Please see my error message below....and HELP! I use this com

  • Deletion condition types from purchase order

    Hello, I've got the following situation: 1) PO had been created for one material with S price and there was three conditions, that to reflect planned freight costs. 2) There GR have been done. Postings: Stock 10  Dt Price difference 6 Dt GR/IR     -1

  • [Solved]External HDD only mounts as read only

    Okay, I have a general log, but I'm not completely sure what all information you need. Ask and you will receive. So I run udiskie through i3, works great, but my file systems get mounted as read-only, which is..not great. It's pretty irritating. So I

  • Extremely slow Workshop 6.0 ?!?!

    Hi all, I've just installed Workshop 6.0 on my Sparc with Solaris 2.6. Everything seems to be working... But it is so slooooow. Compiling a trivial program from the commandprompt takes almost 2 minutes!! (prompt> CC test.cpp ) And starting up the wor

  • Framework purchase order

    Hi experts, What is meant by "Framework Purchase Order"? What are the types of contract maintained in MM module? Also, what is the difference in creating a purchase order for service contract and other contracts using BAPI? Regards, Shanthi