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

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.

  • 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

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

  • 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 download links return 404 error

    Hi,
    I am trying to d/l SQLDeveloper today and keep getting 404 errors. I need the Mac OS X version. It seems that all versions have gone missing for the d/l page.
    Thanks,
    Dan

    Hi Dan,
    Please check again. It just worked fine for me. The OTN team are doing updates today so that may have impacted that page when you checked last.
    Ashley

  • SQL Developer EA4 - pckg body compile error

    Nobody has same problem, I return back to SQLD EA2 (last "stable" version on my computer...)
    Petr
    Hi, I tried compile package body (I want check if folder with package code not close after compiling). But I get these error:
    java.lang.IllegalStateException: reentrant node change
         at oracle.ide.model.Node.checkEventFiringConditions(Node.java:2440)
         at oracle.ide.model.Node.fireNodeLoaded(Node.java:2485)
         at oracle.ide.model.Node.load(Node.java:2207)
         at oracle.ide.model.Node.open(Node.java:959)
         at oracle.ide.model.Node.open(Node.java:922)
         at oracle.ide.model.Node.ensureOpen(Node.java:2132)
         at oracle.ide.model.TextNode.acquireTextBuffer(TextNode.java:732)
         at oracle.dbtools.raptor.phighlight.HighlightEditorPlugin.updateHighlight(HighlightEditorPlugin.java:144)
         at oracle.dbtools.raptor.phighlight.HighlightEditorPlugin.access$100(HighlightEditorPlugin.java:60)
         at oracle.dbtools.raptor.phighlight.HighlightEditorPlugin$1.nodeSaved(HighlightEditorPlugin.java:106)
         at oracle.ide.model.Node$10.run(Node.java:2604)
         at oracle.ide.model.Node.fireNodeEvent(Node.java:2467)
         at oracle.ide.model.Node.fireNodeSaved(Node.java:2602)
         at oracle.ide.model.Node.save(Node.java:1121)
         at oracle.dbtools.raptor.plsql.PLSQLController.handleEvent(PLSQLController.java:133)
         at oracle.ide.controller.IdeAction.performAction(IdeAction.java:529)
         at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:884)
         at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:501)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at oracle.ide.controls.ActionMenuToolButton.access$400(ActionMenuToolButton.java:82)
         at oracle.ide.controls.ActionMenuToolButton$FilterActionEvents.actionPerformed(ActionMenuToolButton.java:394)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.JToggleButton$ToggleButtonModel.setPressed(JToggleButton.java:291)
         at oracle.ide.controls.ActionMenuToolButton$2.setPressed(ActionMenuToolButton.java:223)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:273)
         at java.awt.Component.processMouseEvent(Component.java:6134)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3265)
         at java.awt.Component.processEvent(Component.java:5899)
         at java.awt.Container.processEvent(Container.java:2023)
         at java.awt.Component.dispatchEventImpl(Component.java:4501)
         at java.awt.Container.dispatchEventImpl(Container.java:2081)
         at java.awt.Component.dispatchEvent(Component.java:4331)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4301)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3965)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3895)
         at java.awt.Container.dispatchEventImpl(Container.java:2067)
         at java.awt.Window.dispatchEventImpl(Window.java:2458)
         at java.awt.Component.dispatchEvent(Component.java:4331)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    Has anybody idea what's wrong?
    (Latest function version on my computer is SQLD EA2...)
    Petr
    Edited by: user8102971 on 1.3.2011 0:45

    Lots of posts like this one, please use the forum's search feature before posting (on e.g. IllegalStateException)...
    Regards,
    K.

  • Error while connecting database from SQL developer

    Hello experts,
    i have installed oracle 11g R2 database on WIN32 platform, and my database is working in sql plus but while connecting the same via sql developer am getting the following error:
    NO more data to read from socket
    Vendor code 17410
    Kindly suggest.
    Regards,
    KK

    I have restarted the listener service but still getting the same in sql dev
    LSNRCTL> status
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 11.2.0.1.0 - Produ
    ction
    Start Date 05-JAN-2013 21:56:29
    Uptime 0 days 0 hr. 2 min. 44 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File d:\app\Karan\product\11.2.0\dbhome_1\network\admin\lis
    tener.ora
    Listener Log File d:\app\karan\diag\tnslsnr\Karan-PC\listener\alert\log.
    xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1521)))
    Services Summary...
    Service "OIMDB" has 1 instance(s).
    Instance "OIMDB", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    LSNRCTL> stop
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    The command completed successfully
    LSNRCTL> start
    Starting tnslsnr: please wait...
    TNSLSNR for 32-bit Windows: Version 11.2.0.1.0 - Production
    System parameter file is d:\app\Karan\product\11.2.0\dbhome_1\network\admin\list
    ener.ora
    Log messages written to d:\app\karan\diag\tnslsnr\Karan-PC\listener\alert\log.xm
    l
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521
    ipc)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1521)))
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 11.2.0.1.0 - Produ
    ction
    Start Date 05-JAN-2013 21:59:45
    Uptime 0 days 0 hr. 0 min. 6 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File d:\app\Karan\product\11.2.0\dbhome_1\network\admin\lis
    tener.ora
    Listener Log File d:\app\karan\diag\tnslsnr\Karan-PC\listener\alert\log.
    xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1521)))
    Services Summary...
    Service "OIMDB" has 1 instance(s).
    Instance "OIMDB", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    LSNRCTL>
    Edited by: 958122 on Jan 5, 2013 9:59 PM

  • SQL Developer Error Creating User Home

    SQL Developer was running fine on my Windows 7 64-bit machine until Monday morning. Now when I kick it off (from my Desktop shortcut), I get a small box saying: "Error creating user home in directory C:\Users\<username>\AppData\Roaming\SQL Developer".
    There is no error number, and I have been unable to find this error in the SQL Developer documentation. What does it mean? It's possible that updates were pushed to my machine over the weekend (unknown -- network sysadmins are elsewhere), but I would have thought I would have gotten a different message if there were compatibility problems. Have I accidentally deleted a necessary file from my local SQL Developer folder? My connection databases are Oracle 11g.
    Thanks for any suggestions.

    Hi,
    Here is a thread on the same issue, but so old that the advice it gives is no longer accurate:
    Re: Error creating user home in directory D:\Program Files\raptor\jdev.
    So let's assume you no longer have write access to your own Windows user directory. To workaround that just add the following to one of the conf files in the SQL Developer installation folder. For example, to run SQL Developer from a flash drive, I modified my E:\sqldeveloper\ide\jdk.conf to include
    AddVMOption -Dide.user.dir=../../.sqldeveloperSo that the user home is E:\.sqldeveloper
    Regards,
    Gary
    SQL Developer Team

  • SQL Developer 3.2 crashes with java error when using OCI/Thick Driver

    I just installed SQL Developer 3.2 on my linux desktop. SQL Developer crashes with a java error when I select a database from the object tree.
    When I check Use OCI/Thick driver the application will crash when I navigate to the tree and open a database.
    The app does not crash then I have Use OCI/Thick driver unchecked.
    Here are some details of my environment:
    Desktop OS: Fedora 17 Linux
    $ uname -a
    Linux 3.5.1-1.fc17.x86_64 #1 SMP Thu Aug 9 17:50:43 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux
    Java:
    $ java -version
    java version "1.6.0_34"
    Java(TM) SE Runtime Environment (build 1.6.0_34-b04)
    Java HotSpot(TM) 64-Bit Server VM (build 20.9-b04, mixed mode)
    Oracle instant client:
    $ sqlplus -V
    SQL*Plus: Release 11.2.0.3.0 Production
    Here are the error messages:
    $ sqldeveloper
    Oracle SQL Developer
    Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
    # A fatal error has been detected by the Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x00007f6de7157664, pid=3049, tid=140109371119360
    # JRE version: 6.0_34-b04
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (20.9-b04 mixed mode linux-amd64 compressed oops)
    # Problematic frame:
    # V [libjvm.so+0x516664] unsigned+0xd4
    # An error report file with more information is saved as:
    # /tmp/hs_err_pid3049.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    /opt/sqldeveloper/sqldeveloper/bin/../../ide/bin/launcher.sh: line 544: 3049 Aborted (core dumped) ${JAVA} "${APP_VM_OPTS[@]}" ${APP_ENV_VARS} -classpath ${APP_CLASSPATH} ${APP_MAIN_CLASS} "${APP_APP_OPTS[@]}"

    I also had the problem of SQL Developer crashing when using OCI/Thick driver but I've managed to solve it. My configuration is:
    - Windows 64-bit
    - Java 64-bit (1.6.0.34)
    - SQL Developer 3.2.09 64-bit
    - OCI Instant client 11.2.0.3 64-bit (without installation).
    The thing that solved the problem was copying two files, ojdbc5.jar and ojdbc6.jar, from Instant client installation folder to JAVA_HOME/lib/ext folder+.
    After that, I haven't had a single crash or error message.
    The same trick that solved the problem on 64-bit installation also solved the problem on another windows computer with 32-bit SQL Developer installation.

  • Pl/SQL Error ORA-00904 not showing in Oracle SQL Developer

    Hi,
    I am new to Oracle and the various development tools available.
    Whilst using Oracle SQL Developer we have come across a scenario where a PL/SQL package does not compile, but only shows warnings in the compiler log.
    The same packeage when compiled using PL/SQL Navigator shows a much more detailed list of errors, and highlights the real problem.
    Why does Oracle SQL Developer not show the following error?
    PL/SQL: ORA-00904: "SERIAL_LINE_ID": invalid identifier
    Regards
    Adrian

    There are various settings you can give to messages. (eg, informational, warning, severe).
    Tools-PL/SQL compiler options.
    Normally, just the first 20 messages are displayed.
    Either change code to get rid of warning messages, or change settings to ignore informational and warning messages.
    P.S. There is a dedicated sqldeveloper forum where your question should really have been posted.
    Edited by: Keith Jamieson on Mar 9, 2009 1:45 PM

Maybe you are looking for

  • Sap Script To OTF

    Hi Experts, I am trying to convert a script to pdf data. In the open_form I set getotf = 'X' and in the close form , i get the OTf data. I convert this otf to pdf data. In the pdf output, I only have the static fields and no data.Though the number of

  • How to put disable ipad online

    I have put incorrect password in too many times and has now been disabled for over a day. I have attempted to erase ipad through icloud but i have to be online. how to i get online without buying data?

  • Displaying internal image on a push button

    Hi, I am running oracle forms 11.1.2.0.0. I create a push button and under object property make it an iconic yes and under iconic file name I have "java/oracle/forms/icons/save.gif" During run-time it displays a image but it is not of save, it is an

  • How do I change InDesign CC's desktop back to white?

    I'm finding it hard to read the menu bar and what info I have on the desktop. How do I return it to white?

  • Pl/sql : bind, host & define variables

    what is difference between bind variable, host variable and define variable (i.e. variable created using DEFINE command) ? In what situation each of these variables are used?