SOLVED: SQL Developer Code Compilation with warnings

Hi, I think I found one bug in sql developer.
I have one pl/sql package, that contains a lot of code. In the previous SQL Developer releases (prior to 1.2) when you compile the code, first appears the errors and then the warnings. Because of some type conversion in my sql statements i have more than 20 warnings, and now i cannot see the errors (i think that they will appear if i'm able to increase this "20 messages" limit). I was searching for some option in SQL Developer to increase the number of displayed warnings or errors (or turn off the warnings) but i cannot find such parameter.
Is this a bug, or i'm missing something ?
PS: because of this, i'm not able to compile my package with sql developer, and i'm compiling via sqlplus.
null

Yes, you're missing something: the forum's search feature.
See:
compile with many warnings causes compiler dont show errors correctly
Compiling an invalid packagebody without errormessage
SQL Developer says Compile sucessful but it is not
K.

Similar Messages

  • PL/SQL will compile with warnings but will not run

    I have a pl/sql package that will compile with warnings but no errors but when i try to run it I get an ORA-6508 error telling me there is an error somewhere in the package but I can't find it.
    I have two user schemas that use 2 slightly different versions of the package. I had to make slight code changes to one of the versions and when I made those changes it stopped running. The second version compiles and runs correctly.
    After going through a line by line comparison the first copy was still not running. I copied the second version of the code into the broken schema and commented out the additional lines of code that are not needed in this version.
    When I tried to compile and run this version it still fails with the same error.
    I am using Oracle XE and the databases are small.
    I can send on the code if necessary.
    Can anyone point me in the right direction?
    Thanks
    Susan

    I tried doing what you suggested but there are no errors as it is compiling correctly.
    It is only when I run the package through the debugger that I get the error. I have posted it below
    Connecting to the database Hess S3.
    Executing PL/SQL: ALTER SESSION SET PLSQL_DEBUG=TRUE
    Executing PL/SQL: CALL DBMS_DEBUG_JDWP.CONNECT_TCP( '127.0.0.1', '2086' )
    Debugger accepted connection from database on port 2086.
    Processing 59 classes that have already been prepared...
    Finished processing prepared classes.
    Exception breakpoint occurred at line 10 of BnmSkOTQ3jz5I52ZOxC4QNw.pls.
    $Oracle.EXCEPTION_ORA_6508:
    ORA-04063: package body "SHIPPING.LIFTINGSCHEDULE" has errors
    ORA-06508: PL/SQL: could not find program unit being called: "SHIPPING.LIFTINGSCHEDULE"
    ORA-06512: at line 10
    Process exited.
    Disconnecting from the database Hess S3.
    Debugger disconnected from database.
    Regards
    susan

  • SQL developer not installed with the client software

    Hi All,
    OS: Windows
    Clinet: 11g 64 bit
    I have installed oracle client for windows 64 bit, as we know with client installation the sql developer also comes with. But in my case, I am able to find every other component but sql developer.
    I am thninking of downloading the same from Oracle site, is there a alternate way for the same?
    Regards,
    Sphinx

    What, exactly, did you install?
    Did you install the Instant Client?  Or did you do a full client install?  If you did a full client install, which option did you pick during the installation process-- Administrator, Runtime, or Custom?  If you did a full client install that didn't include SQL Developer, you can always restart the Oracle Universal Installer, do a custom install, and choose to install just SQL Developer.
    That being said, my bias would generally be to download the most recent version of SQL Developer from OTN separately.  SQL Developer gets released much more frequently than the Oracle client so the version on OTN is generally multiple revisions more recent than the version that was shipped with the client.  If you're going to be developing code, you may as well leverage all the new features of SQL Developer rather than settling for whatever version was current when 11.2 was released.
    Justin

  • How to find out which PL/SQL Proc is Compiled with Debug?

    Hi,
    is there any View where i can see, which PL/SQL Proc is compiled with the debug flag?
    Thanks
    Marco
    Message was edited by:
    mpatzwah

    Alternatively:
    select name, plsql_debug from sys.all_plsql_object_settings

  • Using GDB to debug a code compiled with Sun cc

    When using gdb to debug C code compiled with Sun's cc, the step-into doesn't work, i can only "step into" a function if i put a breakpoint on it. Also, sometimes if i set a breakpoint on a function name, like "break foo", gdb indeed breaks when foo is reached, but without showing the source code (this i could not reproduce with a small demo program).
    I am using Sun Studio 12 on a SunOS 5.10 sun4u sparc machine.
    My demo program is:
    #include <stdio.h>
    #include <strings.h>
    void func1(str)
    char str;
    printf("This is the first line\n");
    printf("STR: %s\n",str);
    int main()
    char str[10];
    strcpy(str,"lalalal");
    printf("Calling func1\n");
    func1(str);
    printf("Returned from func1\n");
    The compilation command i run is:
    cc -c -g step_into.c -o step_into.o
    cc -g -o step_into step_into.o
    When running the program with gdb, the "step" command does not step into func1, but runs it like "next".
    I know there's the dbx debugger, but if there's a way to fix this with gdb - it is much preferable for us. Switching to dbx is not really feasible for us.
    Regards,
    Yael

    Hello Yael,
    I tried your example on my laptop (OpenSolaris x86/x64) with Sun Studio 12 update 1
    and GDB 6.3.50 - it works properly:
    $ gdb dist/Debug/SunStudio-Solaris-x86/forum_c_20091230
    GNU gdb 6.3.50_2004-11-23-cvs
    Copyright 2004 Free Software Foundation, Inc.
    GDB is free software, covered by the GNU General Public License, and you are
    welcome to change it and/or distribute copies of it under certain conditions.
    Type "show copying" to see the conditions.
    There is absolutely no warranty for GDB.  Type "show warranty" for details.
    This GDB was configured as "i386-pc-solaris2.11"...
    (gdb) break main
    Breakpoint 1 at 0x8050a87: file src/args.c, line 15.
    (gdb) run
    Starting program: /export/home/nikm/SunStudioProjects/Forum_C_20091230/dist/Debug/SunStudio-Solaris-x86/forum_c_20091230
    Breakpoint 1, main () at src/args.c:15
    15         printf("Calling func1\n");
    Current language:  auto; currently minimal
    (gdb) next
    Calling func1
    16         func1(str);
    (gdb) step
    This is the first line
    func1 (str=0x80477ba "lalalal") at src/args.c:7
    7         printf("STR: %s\n",str);
    (gdb) Could you please download and try Sun Studio 12 update 1?
    It is available for free. Here is the web page:
    http://developers.sun.com/sunstudio/
    BTW, which GDB version do you use?
    I'll try it on a sparc system and let you know.
    Thanks.
    Nik
    P.S.: there is a typo in the source code:
    void func1(str)
    *char *str;I think it should be:
    void func1(char *str)Probably a copy-paste problem.
    Please use "CODE" mode when you copy-paste source lines (selected text, press 'CODE' button).

  • SQL Developer - No Compiler - Log

    Hi,
    We are being asked to use SQL Developer instead of another app and finding it very tough going.
    I have Windows 7 64bit, SQL Developer 3 64bit and JDK 64bit
    I have just installed version 3 and I am having a problem.
    I open a new SQL worksheet and I type the following:
    begin
    dfsljk
    end;
    I then press either the run statement button or the run script button hoping to see the compiler - log window appear with the error.
    The last version used to do this.
    Instead all I get is a text dump in the script output.
    What has happeend to compiler - log?
    How do I get it backl?
    I have tried ctrl-alt-l but nothing happens
    Robert
    Edited by: RobertMetcalf on May 13, 2011 2:35 PM

    If Sue has had the time to follow up, it apparently did not manifest as a new bug. I did not check for any old bugs.
    Anyway, the change in behavior was probably intentional to improve internal consistency in the tool. For errors in anonymous blocks in a worksheet, neither 2.1 nor 3.0 brings up the compiler log. Any error message displays only in the script or statement output tabs.
    As for package, function, and procedure definitions, the first attempt to execute the DDL in a worksheet results in a new node of the appropriate name and type appearing in the Connections tree view (whether the compile succeeds or fails). This may require a "Refresh" for the object to display in the tree. If there is some issue during compilation, the 2.1 output tab shows, for example,
    PROCEDURE XYZ compiled
    Errors: check compiler log <--- implying an intent to display details in the compiler log
    whereas the 3.0 output tab shows
    PROCEDURE xyz compiled
    Warning: execution completed with warning <--- implying no intent to display details in the compiler log
    Subsequent create invocations (without the "or replace" syntax) results in a "ORA-00955: name is already used by an existing object" error, hinting that opening the PL/SQL editor on the object from the Connections tree view is really the appropriate action to take.
    Notice also, in the 2.1 compiler log, that right clicking on the error and selecting "Go to Source" does nothing for PL/SQL code executed from the worksheet. It only goes to the proper source line for code compiled from the PL/SQL editor.
    The tool, by pushing you toward use of the PL/SQL editor, is probably doing you a favor. The PL/SQL environment is a superior development environment as compared to the worksheet trying to emulate SQL*Plus. For example, some SQL*Plus features (such as variable declarations for use as bind variables) are not fully implemented in SQL Developer. The implementation of the PL/SQL context seems much more solid.
    Gary Graham
    SQL Developer Team

  • SQL Developer says Compile sucessful but it is not

    I am trying to compile a procedure on a 10g instance. When I compile it, using any number of means to do so, it always says the compile was successful. Then when I try to view the changes in TOAD, they are not there. What is happening here? I using version 1.1.2.25 of SQL Developer.

    True - but while I may be able to reproduce the problem on my database I can't provide the example without the 600Gb of underlying data.
    Anyway, I've just located the package that was a problem last week and it was marked with a red cross indicating it was invalid - also double-checked that it had a status of INVALID in DBA_OBJECTS. (BTW - the problem was due to a dependent package having a duplicate variable declaration - but was still valid despite this being 'illegal')
    So I right-click and select compile and this results in "SR_POLICY Compiled" being displayed in the Message Log pane. When I attempt to refresh the connections tree the staus flag does not change. Requery DBA_OBJECTS confirms that the status is still INVALID.
    Then I right-click against the package in the connection tree and select Compile. This time I get the following message(s) ...
    SR_POLICY Compiled
    SR_POLICY Body Compiled
    Also, the status in the connection tree has changed and the invalid flag has disappeared. The query against DBA_OBJECTS also confirms that the package is now valid.
    Nobody else on the server, no changes to the underlying code, but the first attempt to compile fails.
    It would be useful if others could contribute if they have come across similar examples on this sort of problem.

  • SQL DEVELOPER integration/setup with SUBVERSION (SVN)

    Hi All,
    Can any one kindly forward/explain me the integration process of SQL Developer with SUBVERSION (SVN). I found the following link with a tutorial on its usage but not its installation/setup/integration process. http://www.oracle.com/technology/oramag/oracle/08-jul/o48sql.html
    Thanks in advance,
    Regards,
    Aj

    Well, first of all you need to know what subversion is and what is tne purpose of use a data repository like this. If you understand the filosphy of SVN you get almost all you need. May be this links will be useful for you: http://svnbook.red-bean.com/, http://www.germane-software.com/~ser/R_n_R/subversion.html, http://www.owlnet.rice.edu/~comp314/svn.html
    Next you need to know that SQLDeveloper may integrate with subversion in two forms:
    1. Creating a new repository to maintain your code: Menu Versioning -> Createnew repository
    2. Using a created repository and importing files: Menu Versioning -> import files -> select repository -> select files
    May be this few words be useful for you, good luck!

  • ORA-01722 when opening a package in SQL Developer 1.2 with oracle 9iR1

    Hi,
    I use SQL Developer with Oracle Database 9i release 1.
    When I open a package in SQL Developer 1.2 (or 1.5) for editing, I receive the error ORA-01722. The package successfully opens but this message, which pops everytime, is really annoying.
    I monitored the requests sent by SQL Developer and it seems that the following request is responsible of the error :
    SELECT LINE,POSITION,TEXT,ATTRIBUTE FROM USER_ERRORS WHERE TYPE=:1AND NAME=:2
    Notice there are no spaces between ':1' and 'AND'. When executing 'by hand' the request with SQL Developer, it asks for the value of '1AND' bind variable and the value of '2'. Then, it fails to execute with... ORA-01722.
    Is it possible to avoid this bug ?
    Thank you for your help.

    We're doing rolling 2 week releases until production. Expect something new next week.

  • Help how to connecting Oracle SQL Developer 3.0  with Oracle Database 11g

    Hello,
    I'm new in oracle developer yesterday i setup in my laptop database 11g the last version (11.2.0.1.0), well i follow steps still i got succeed to install, and i got my local host URL and i test my user name and password work very well, my problem now is i try to connect database 11g using Oracle SQL Developer 3.0 (3.0.04.34) but always filed and with my little experience i don't know where the wrong. as i said i test database after finish install is work fine the my URL is https://Ahmed-HP:1158/em and i test my username and password that i already set before is enter normal in my local database, please i need help to know how i connect database with Oracle SQL Developer 3.0 (3.0.04.34).
    Thanks,

    885173 wrote:
    EdStevens, thanks for your quick answer, sorry for my explain was doesn't clear, i open oracle sql developer and choose new connection i set connection name system_orcl username:system password:*i set my password that i create when i setup database*
    -Now the link that i got after finish install database is https://Ahmed-HP:1158/em so i have question about this point Hostname and port if the link to access database is this https://Ahmed-HP:1158/em so this mean i typing at Hostname:localhost and port:1158 ?
    because the message when i test connection always is filed and I'm sure i typing username and password and SID:orcl as i set when install database.port 1158 is what the dbcontrol (Oracle Enterprise Manager) is listening on. OEM is NOT the database. As far as the database is concerned, OEM is "just another client".
    Actually, the database doesn't listen for requests on any port. There is another process, the "listener" that listens for requests to connect to the database. Typically, it listens on port 1521. You should have a tnsnames.ora file set up to resolve a connection request to the correct host. You can read more on this at http://edstevensdba.wordpress.com/2011/02/09/sqlnet_overview/

  • Copying SQL Script from Oracle SQL Developer into Excel with formatting

    I need to copy a SQL Script into Excel in order to develop some VBA code. Is there any nice way that I can copy SQL Script from Oracle SQL Developer into Excel and retain its formatting? I am a stickler for having legible, readable SQL and like to have all my columns lined up and aliases lined up. When we used to use SQL Navigator, the tab formatting seemed to copy and paste just fine. Now that we have migrated to Oracle SQL Developer, the formatting seems to get all messed up.
    And suggestions are greatly appreciated and Thanks in advance for your review and am hopeful for an answer.
    Thanks.
    PSULionRP

    I suppose you want a real tabulator instead of spaces. You can configure this in the preferences (SQL Formatter - Oracle). You have to apply it then to your existing code (e.g. CTRL-F7), but new code should get it right from the start.
    Hope that helps,
    K.

  • Sql Developer compatible problem with Vista aero

    My computer is Vista Ultimate x64 en-US. I have downloaded Sql Developer from here
    http://www.oracle.com/technology/software/products/sql/index.html
    When I run it, the aero glass effect turn off automatically, When I close the sql developer, the aero turn on again.
    Why does this happen? Does Oracle offer vista compatible version of sql developer?
    Thank you for any information.

    Thank you for the response.
    But my laptop support Vista and later version of Windows only. That mean xp/2003 cannot be installed. I am a WPF supporter who need aero glass effect. So Vista or Win 7 with all effect turn on is necessary for me.
    My current solution is to change style to classic when I use sql developer, and change it back when I support WPF customer.
    Thank you for your answer and your time to response.
    Sincerely,
    Kira Qian
    Edited by: Kira Qian - MSFT on Jun 20, 2009 8:52 PM

  • SQL Developer connection issue with JDBC

    Hi skutz & friends,
    I have problem with Oracle SQL Developer I can not connect to any oracle db
    because Status : Failure -Error loading native JDBC driver library.
    However, I download SQL developer [ Oracle SQL Developer for Windows (JDK1.5.0_06 is bundled in this zip) ]
    After it is not working. Also I download JDK 5.0 Update 14
    The Java SE Development Kit (JDK) to install it on my PC again.
    But it does not work. My install path information:
    install path as C:\Program Files\SQLDEVELOPER_INSTAL\sqldeveloper
    local oracle as !0g 10201
    SQL version as sqldeveloper-1.2.1.3213 which download last versionfrom OTN on 2/18/2008.
    for connection, taken basic.
    port as default 1521
    hostname and saver name are same.
    I created a environment variable in window xp.
    SQLDEVELOPER_USER_DIR AS C:\Program Files\SQLDEVELOPER_INSTAL\sqldeveloper
    can anybody help me with this connection?
    thanks
    Jimmy

    Duplicate thread: Please enter all responses on other thread: SQL seveloper connection issue with JDBC

  • SQL Developer EA4 - compile/open spec/body take longer then 3.2.2

    The Compile takes too long in compare to SQL Developer 3.2.2
             Sometimes the SQL Developer  freeze
             Sometimes a warning of low memory window come up  and then goes away
    The Opening of Spec/body takes too long compare to SQL Developer 3.2.2.
    Note:
    More visible on big packages (3000,5000,10000 lines)
    Environment:
    Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit
    Windows 7 Ultimate
    Processor Intel(R) Core(TM)i7 CPU [email protected] GHz
    RAM 8. GB
    OS 64 bit

    The package body has  around 6200 lines take a while to open.
    Below is the  info that  you requested.
            at java.util.TimerThread.mainLoop(Timer.java:552)
            - locked <0x00000000f4f45df0> (a java.util.TaskQueue)
            at java.util.TimerThread.run(Timer.java:505)
    "TimedCache-Timer" daemon prio=6 tid=0x000000000b530000 nid=0x156c in Object.wai
    t() [0x000000000efdf000]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x00000000f473bf50> (a java.util.TaskQueue)
            at java.lang.Object.wait(Object.java:503)
            at java.util.TimerThread.mainLoop(Timer.java:526)
            - locked <0x00000000f473bf50> (a java.util.TaskQueue)
            at java.util.TimerThread.run(Timer.java:505)
    "Framework Event Dispatcher" daemon prio=6 tid=0x000000000b52d000 nid=0x1568 in
    Object.wait() [0x000000000de0f000]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x00000000f3e64f38> (a org.eclipse.osgi.framework.eventmgr
    .EventManager$EventThread)
            at java.lang.Object.wait(Object.java:503)
            at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.getNextE
    vent(EventManager.java:400)
            - locked <0x00000000f3e64f38> (a org.eclipse.osgi.framework.eventmgr.Eve
    ntManager$EventThread)
            at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(Even
    tManager.java:336)
    "Framework Active Thread" prio=6 tid=0x000000000b52b800 nid=0x1194 in Object.wai
    t() [0x000000000ca5f000]
       java.lang.Thread.State: TIMED_WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x00000000f3daf900> (a org.eclipse.osgi.framework.internal
    .core.Framework)
            at org.eclipse.osgi.framework.internal.core.Framework.run(Framework.java
    :1863)
            - locked <0x00000000f3daf900> (a org.eclipse.osgi.framework.internal.cor
    e.Framework)
            at java.lang.Thread.run(Thread.java:722)
    "CLI Requests Server" daemon prio=6 tid=0x000000000b6c8000 nid=0x105c runnable [
    0x000000000c65f000]
       java.lang.Thread.State: RUNNABLE
            at java.net.DualStackPlainSocketImpl.accept0(Native Method)
            at java.net.DualStackPlainSocketImpl.socketAccept(DualStackPlainSocketIm
    pl.java:121)
            at java.net.AbstractPlainSocketImpl.accept(AbstractPlainSocketImpl.java:
    398)
            at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:183)
            - locked <0x00000000f39cb7f8> (a java.net.SocksSocketImpl)
            at java.net.ServerSocket.implAccept(ServerSocket.java:522)
            at java.net.ServerSocket.accept(ServerSocket.java:490)
            at org.netbeans.CLIHandler$Server.run(CLIHandler.java:1100)
    "Active Reference Queue Daemon" daemon prio=2 tid=0x000000000b719800 nid=0x1308
    in Object.wait() [0x000000000c37f000]
       java.lang.Thread.State: TIMED_WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x00000000f3c08468> (a java.lang.ref.ReferenceQueue$Lock)
            at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:135)
            - locked <0x00000000f3c08468> (a java.lang.ref.ReferenceQueue$Lock)
            at org.openide.util.lookup.implspi.ActiveQueue$Daemon.run(ActiveQueue.ja
    va:180)
            - locked <0x00000000f3c08468> (a java.lang.ref.ReferenceQueue$Lock)
    "TimerQueue" daemon prio=6 tid=0x0000000009ade800 nid=0xc6c runnable [0x00000000
    0bdcf000]
       java.lang.Thread.State: TIMED_WAITING (parking)
            at sun.misc.Unsafe.park(Native Method)
            - parking to wait for  <0x00000000f3924ba8> (a java.util.concurrent.lock
    s.AbstractQueuedSynchronizer$ConditionObject)
            at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:226
            at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject
    .awaitNanos(AbstractQueuedSynchronizer.java:2082)
            at java.util.concurrent.DelayQueue.take(DelayQueue.java:220)
            at javax.swing.TimerQueue.run(TimerQueue.java:171)
            at java.lang.Thread.run(Thread.java:722)
    "AWT-EventQueue-0" prio=6 tid=0x0000000009a0a000 nid=0x1500 runnable [0x00000000
    0a79d000]
       java.lang.Thread.State: RUNNABLE
            at java.net.SocketInputStream.socketRead0(Native Method)
            at java.net.SocketInputStream.read(SocketInputStream.java:150)
            at java.net.SocketInputStream.read(SocketInputStream.java:121)
            at oracle.net.ns.Packet.receive(Packet.java:300)
            at oracle.net.ns.DataPacket.receive(DataPacket.java:106)
            at oracle.net.ns.NetInputStream.getNextPacket(NetInputStream.java:315)
            at oracle.net.ns.NetInputStream.read(NetInputStream.java:260)
            at oracle.net.ns.NetInputStream.read(NetInputStream.java:185)
            at oracle.net.ns.NetInputStream.read(NetInputStream.java:102)
            at oracle.jdbc.driver.T4CSocketInputStreamWrapper.readNextPacket(T4CSock
    etInputStreamWrapper.java:124)
            at oracle.jdbc.driver.T4CSocketInputStreamWrapper.read(T4CSocketInputStr
    eamWrapper.java:80)
            at oracle.jdbc.driver.T4CMAREngine.unmarshalUB1(T4CMAREngine.java:1137)
            at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:290)
            at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:192)
            at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:531)
            at oracle.jdbc.driver.T4CCallableStatement.doOall8(T4CCallableStatement.
    java:204)
            at oracle.jdbc.driver.T4CCallableStatement.fetch(T4CCallableStatement.ja
    va:1116)
            at oracle.jdbc.driver.OracleResultSetImpl.close_or_fetch_from_next(Oracl
    eResultSetImpl.java:373)
            - locked <0x00000000f7afea78> (a oracle.jdbc.driver.T4CConnection)
            at oracle.jdbc.driver.OracleResultSetImpl.next(OracleResultSetImpl.java:
    277)
            - locked <0x00000000f7afea78> (a oracle.jdbc.driver.T4CConnection)
            at oracle.dbtools.raptor.navigator.net.DBURLStreamHandlerFactory.fetchSo
    urce(DBURLStreamHandlerFactory.java:282)
            at oracle.dbtools.raptor.navigator.net.DBURLFileSystemHelper.createReade
    r(DBURLFileSystemHelper.java:164)
            at oracle.ideimpl.net.LazyURLFileSystemHelper.createReader(LazyURLFileSy
    stemHelper.java:365)
            at oracle.ide.net.URLFileSystem.createReader(URLFileSystem.java:1707)
            at oracle.ide.model.TextNode.createReader(TextNode.java:1099)
            at oracle.ide.model.TextNode.loadTextBuffer(TextNode.java:302)
            at oracle.ide.model.TextNode.openImpl(TextNode.java:537)
            at oracle.dbtools.raptor.navigator.plsql.PlSqlNode.openImpl(PlSqlNode.ja
    va:101)
            at oracle.ide.model.Node.open(Node.java:1045)
            at oracle.ide.model.Node.open(Node.java:992)
            at oracle.ide.model.TextNode.acquireTextBufferOrThrow(TextNode.java:812)
            at oracle.ide.ceditor.CodeEditor.initializeEditor(CodeEditor.java:1963)
            at oracle.ide.ceditor.CodeEditor.setContext(CodeEditor.java:1390)
            - locked <0x00000000f97551c0> (a oracle.ide.ceditor.CodeEditor)
            at com.oracle.jdeveloper.nbwindowsystem.editor.EditorState.createEditor(
    EditorState.java:169)
            at com.oracle.jdeveloper.nbwindowsystem.editor.EditorState.getOrCreateEd
    itor(EditorState.java:103)
            at com.oracle.jdeveloper.nbwindowsystem.editor.SplitPaneState.canSetEdit
    orStatePos(SplitPaneState.java:257)
            at com.oracle.jdeveloper.nbwindowsystem.editor.SplitPaneState.setCurrent
    EditorStatePos(SplitPaneState.java:220)
            at com.oracle.jdeveloper.nbwindowsystem.editor.TabGroupState.createSplit
    PaneState(TabGroupState.java:110)
            at com.oracle.jdeveloper.nbwindowsystem.editor.TabGroup.addTabGroupState
    (TabGroup.java:116)
            at com.oracle.jdeveloper.nbwindowsystem.NbEditorManager.createEditor(NbE
    ditorManager.java:534)
            at com.oracle.jdeveloper.nbwindowsystem.NbEditorManager.createEditor(NbE
    ditorManager.java:511)
            at com.oracle.jdeveloper.nbwindowsystem.NbEditorManager.openEditor(NbEdi
    torManager.java:379)
            at oracle.dbtools.raptor.oviewer.base.NavSelectionListener.openEditor(Na
    vSelectionListener.java:829)
            at oracle.dbtools.raptor.oviewer.base.NavSelectionListener.openEditor(Na
    vSelectionListener.java:749)
            at oracle.dbtools.raptor.oviewer.base.NavSelectionListener.access$1500(N
    avSelectionListener.java:82)
            at oracle.dbtools.raptor.oviewer.base.NavSelectionListener$4.run(NavSele
    ctionListener.java:476)
            at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:251)
            at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:727)
            at java.awt.EventQueue.access$200(EventQueue.java:103)
            at java.awt.EventQueue$3.run(EventQueue.java:688)
            at java.awt.EventQueue$3.run(EventQueue.java:686)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDo
    main.java:76)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:697)
            at oracle.javatools.internal.ui.EventQueueWrapper._dispatchEvent(EventQu
    eueWrapper.java:169)
            at oracle.javatools.internal.ui.EventQueueWrapper.dispatchEvent(EventQue
    ueWrapper.java:151)
            at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThre
    ad.java:242)
            at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.
    java:161)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:150)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
            at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)
    "AWT-Windows" daemon prio=6 tid=0x0000000009a09800 nid=0x1084 runnable [0x000000
    000a52f000]
       java.lang.Thread.State: RUNNABLE
            at sun.awt.windows.WToolkit.eventLoop(Native Method)
            at sun.awt.windows.WToolkit.run(WToolkit.java:299)
            at java.lang.Thread.run(Thread.java:722)
    "AWT-Shutdown" prio=6 tid=0x0000000009a04800 nid=0x11dc in Object.wait() [0x0000
    00000a42f000]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x00000000f39cc0b8> (a java.lang.Object)
            at java.lang.Object.wait(Object.java:503)
            at sun.awt.AWTAutoShutdown.run(AWTAutoShutdown.java:287)
            - locked <0x00000000f39cc0b8> (a java.lang.Object)
            at java.lang.Thread.run(Thread.java:722)
    "Java2D Disposer" daemon prio=10 tid=0x0000000009a02000 nid=0xedc in Object.wait
    () [0x000000000a32f000]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x00000000f3c0dc20> (a java.lang.ref.ReferenceQueue$Lock)
            at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:135)
            - locked <0x00000000f3c0dc20> (a java.lang.ref.ReferenceQueue$Lock)
            at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:151)
            at sun.java2d.Disposer.run(Disposer.java:145)
            at java.lang.Thread.run(Thread.java:722)
    "Service Thread" daemon prio=6 tid=0x00000000097fa800 nid=0x14bc runnable [0x000
    0000000000000]
       java.lang.Thread.State: RUNNABLE
    "C2 CompilerThread1" daemon prio=10 tid=0x00000000097e8000 nid=0x15e0 waiting on
    condition [0x0000000000000000]
       java.lang.Thread.State: RUNNABLE
    "C2 CompilerThread0" daemon prio=10 tid=0x00000000097e0800 nid=0x1494 waiting on
    condition [0x0000000000000000]
       java.lang.Thread.State: RUNNABLE
    "Attach Listener" daemon prio=10 tid=0x00000000097df800 nid=0x15f8 runnable [0x0
    000000000000000]
       java.lang.Thread.State: RUNNABLE
    "Signal Dispatcher" daemon prio=10 tid=0x00000000097de800 nid=0x161c waiting on
    condition [0x0000000000000000]
       java.lang.Thread.State: RUNNABLE
    "Finalizer" daemon prio=8 tid=0x00000000078bb800 nid=0x4cc in Object.wait() [0x0
    00000000976f000]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x00000000f3a05b40> (a java.lang.ref.ReferenceQueue$Lock)
            at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:135)
            - locked <0x00000000f3a05b40> (a java.lang.ref.ReferenceQueue$Lock)
            at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:151)
            at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:189)
    "Reference Handler" daemon prio=10 tid=0x00000000078b3000 nid=0x14c4 in Object.w
    ait() [0x000000000966f000]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x00000000f39d3838> (a java.lang.ref.Reference$Lock)
            at java.lang.Object.wait(Object.java:503)
            at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:133)
            - locked <0x00000000f39d3838> (a java.lang.ref.Reference$Lock)
    "main" prio=6 tid=0x000000000235d000 nid=0xc8c waiting on condition [0x000000000
    0000000]
       java.lang.Thread.State: RUNNABLE
    "VM Thread" prio=10 tid=0x00000000077ca800 nid=0xf24 runnable
    "GC task thread#0 (ParallelGC)" prio=6 tid=0x000000000236e000 nid=0xdb0 runnable
    "GC task thread#1 (ParallelGC)" prio=6 tid=0x000000000236f800 nid=0x6a4 runnable
    "GC task thread#2 (ParallelGC)" prio=6 tid=0x0000000002371000 nid=0x131c runnabl
    e
    "GC task thread#3 (ParallelGC)" prio=6 tid=0x0000000002373000 nid=0x1508 runnabl
    e
    "GC task thread#4 (ParallelGC)" prio=6 tid=0x0000000002376800 nid=0x1608 runnabl
    e
    "GC task thread#5 (ParallelGC)" prio=6 tid=0x0000000002377800 nid=0xdf4 runnable
    "GC task thread#6 (ParallelGC)" prio=6 tid=0x0000000002379000 nid=0x1518 runnabl
    e
    "GC task thread#7 (ParallelGC)" prio=6 tid=0x000000000237a000 nid=0xf50 runnable
    "VM Periodic Task Thread" prio=10 tid=0x0000000009803800 nid=0xfa4 waiting on co
    ndition
    JNI global references: 1712
    Heap
    PSYoungGen      total 65984K, used 49680K [0x00000000fbd60000, 0x00000000fffd00
    00, 0x0000000100000000)
      eden space 63872K, 77% used [0x00000000fbd60000,0x00000000fed7b368,0x00000000f
    fbc0000)
      from space 2112K, 19% used [0x00000000ffbc0000,0x00000000ffc28fd8,0x00000000ff
    dd0000)
      to   space 1984K, 0% used [0x00000000ffde0000,0x00000000ffde0000,0x00000000fff
    d0000)
    ParOldGen       total 124928K, used 103514K [0x00000000f3800000, 0x00000000fb20
    0000, 0x00000000fbd60000)
      object space 124928K, 82% used [0x00000000f3800000,0x00000000f9d16be0,0x000000
    00fb200000)
    PSPermGen       total 116160K, used 85069K [0x00000000e3800000, 0x00000000ea970
    000, 0x00000000f3800000)
      object space 116160K, 73% used [0x00000000e3800000,0x00000000e8b137b0,0x000000
    00ea970000)
    During the compile
            at oracle.ideimpl.log.TabbedLogManager$4.run(TabbedLogManager.java:321)
            at java.lang.Thread.run(Thread.java:722)
    "JarIndex Timer" daemon prio=6 tid=0x000000000b52e800 nid=0x12a0 in Object.wait(
    ) [0x00000000113df000]
       java.lang.Thread.State: TIMED_WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x00000000f4f28660> (a java.util.TaskQueue)
            at java.util.TimerThread.mainLoop(Timer.java:552)
            - locked <0x00000000f4f28660> (a java.util.TaskQueue)
            at java.util.TimerThread.run(Timer.java:505)
    "TimedCache-Timer" daemon prio=6 tid=0x000000000b530000 nid=0x156c in Object.wai
    t() [0x000000000efdf000]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x00000000f472ba70> (a java.util.TaskQueue)
            at java.lang.Object.wait(Object.java:503)
            at java.util.TimerThread.mainLoop(Timer.java:526)
            - locked <0x00000000f472ba70> (a java.util.TaskQueue)
            at java.util.TimerThread.run(Timer.java:505)
    "Framework Event Dispatcher" daemon prio=6 tid=0x000000000b52d000 nid=0x1568 in
    Object.wait() [0x000000000de0f000]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x00000000f3e58220> (a org.eclipse.osgi.framework.eventmgr
    .EventManager$EventThread)
            at java.lang.Object.wait(Object.java:503)
            at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.getNextE
    vent(EventManager.java:400)
            - locked <0x00000000f3e58220> (a org.eclipse.osgi.framework.eventmgr.Eve
    ntManager$EventThread)
            at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(Even
    tManager.java:336)
    "Framework Active Thread" prio=6 tid=0x000000000b52b800 nid=0x1194 in Object.wai
    t() [0x000000000ca5f000]
       java.lang.Thread.State: TIMED_WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x00000000f3da2ee0> (a org.eclipse.osgi.framework.internal
    .core.Framework)
            at org.eclipse.osgi.framework.internal.core.Framework.run(Framework.java
    :1863)
            - locked <0x00000000f3da2ee0> (a org.eclipse.osgi.framework.internal.cor
    e.Framework)
            at java.lang.Thread.run(Thread.java:722)
    "CLI Requests Server" daemon prio=6 tid=0x000000000b6c8000 nid=0x105c runnable [
    0x000000000c65f000]
       java.lang.Thread.State: RUNNABLE
            at java.net.DualStackPlainSocketImpl.accept0(Native Method)
            at java.net.DualStackPlainSocketImpl.socketAccept(DualStackPlainSocketIm
    pl.java:121)
            at java.net.AbstractPlainSocketImpl.accept(AbstractPlainSocketImpl.java:
    398)
            at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:183)
            - locked <0x00000000f39c1c70> (a java.net.SocksSocketImpl)
            at java.net.ServerSocket.implAccept(ServerSocket.java:522)
            at java.net.ServerSocket.accept(ServerSocket.java:490)
            at org.netbeans.CLIHandler$Server.run(CLIHandler.java:1100)
    "Active Reference Queue Daemon" daemon prio=2 tid=0x000000000b719800 nid=0x1308
    in Object.wait() [0x000000000c37f000]
       java.lang.Thread.State: TIMED_WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x00000000f3bfd160> (a java.lang.ref.ReferenceQueue$Lock)
            at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:135)
            - locked <0x00000000f3bfd160> (a java.lang.ref.ReferenceQueue$Lock)
            at org.openide.util.lookup.implspi.ActiveQueue$Daemon.run(ActiveQueue.ja
    va:180)
            - locked <0x00000000f3bfd160> (a java.lang.ref.ReferenceQueue$Lock)
    "TimerQueue" daemon prio=6 tid=0x0000000009ade800 nid=0xc6c runnable [0x00000000
    0bdcf000]
       java.lang.Thread.State: RUNNABLE
            at sun.misc.Unsafe.compareAndSwapObject(Native Method)
            at java.util.concurrent.locks.AbstractQueuedSynchronizer.compareAndSetTa
    il(AbstractQueuedSynchronizer.java:2309)
            at java.util.concurrent.locks.AbstractQueuedSynchronizer.enq(AbstractQue
    uedSynchronizer.java:591)
            at java.util.concurrent.locks.AbstractQueuedSynchronizer.transferAfterCa
    ncelledWait(AbstractQueuedSynchronizer.java:1699)
            at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject
    .awaitNanos(AbstractQueuedSynchronizer.java:2079)
            at java.util.concurrent.DelayQueue.take(DelayQueue.java:220)
            at javax.swing.TimerQueue.run(TimerQueue.java:171)
            at java.lang.Thread.run(Thread.java:722)
    "AWT-EventQueue-0" prio=6 tid=0x0000000009a0a000 nid=0x1500 runnable [0x00000000
    0a79d000]
       java.lang.Thread.State: RUNNABLE
            at org.openide.util.RequestProcessor$TickTac.schedule(RequestProcessor.j
    ava:2217)
            - locked <0x00000000f39c8ae8> (a java.lang.Class for org.openide.util.Re
    questProcessor$TickTac)
            at org.openide.util.RequestProcessor$Task.schedule(RequestProcessor.java
    :1504)
            at org.openide.util.RequestProcessor$Task.schedule(RequestProcessor.java
    :1473)
            at org.openide.loaders.FolderList.refresh(FolderList.java:420)
            - locked <0x00000000fe696000> (a org.openide.loaders.FolderList)
            at org.openide.loaders.FolderList.fileDataCreated(FolderList.java:530)
            at sun.reflect.GeneratedMethodAccessor24.invoke(Unknown Source)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:43)
            at java.lang.reflect.Method.invoke(Method.java:601)
            at org.openide.util.WeakListenerImpl$ProxyListener.invoke(WeakListenerIm
    pl.java:458)
            at com.sun.proxy.$Proxy1.fileDataCreated(Unknown Source)
            at org.openide.filesystems.FCLSupport$DispatchEventWrapper.dispatchEvent
    Impl(FCLSupport.java:139)
            at org.openide.filesystems.FCLSupport$DispatchEventWrapper.dispatchEvent
    (FCLSupport.java:128)
            at org.openide.filesystems.FCLSupport.dispatchEvent(FCLSupport.java:105)
            at org.openide.filesystems.FileObject$ED.dispatch(FileObject.java:1314)
            at org.openide.filesystems.EventControl.invokeDispatchers(EventControl.j
    ava:213)
            at org.openide.filesystems.EventControl.exitAtomicAction(EventControl.ja
    va:188)
            at org.openide.filesystems.EventControl.runAtomicAction(EventControl.jav
    a:129)
            at org.openide.filesystems.FileSystem.runAtomicAction(FileSystem.java:60
    9)
            at org.openide.loaders.DataObjectPool.runAtomicActionSimple(DataObjectPo
    ol.java:229)
            at org.openide.loaders.InstanceDataObject$Creator.createInstanceDataObje
    ct(InstanceDataObject.java:1579)
            - locked <0x00000000f71735e0> (a org.openide.loaders.InstanceDataObject$
    Creator)
            at org.openide.loaders.InstanceDataObject.create(InstanceDataObject.java
    :343)
            at org.openide.loaders.InstanceDataObject.create(InstanceDataObject.java
    :319)
            at org.netbeans.core.windows.persistence.PersistenceManager.saveTopCompo
    nents(PersistenceManager.java:844)
            at org.netbeans.core.windows.persistence.PersistenceManager.saveWindowSy
    stem(PersistenceManager.java:1181)
            at org.netbeans.core.windows.PersistenceHandler.save(PersistenceHandler.
    java:323)
            - locked <0x00000000f56e8770> (a org.netbeans.core.windows.PersistenceHa
    ndler)
            at org.netbeans.core.windows.WindowSystemImpl.save(WindowSystemImpl.java
    :93)
            at com.oracle.jdeveloper.nbwindowsystem.NbDockStation.saveLayout(NbDockS
    tation.java:500)
            at oracle.ideimpl.cmd.SaveSystemFilesUtil.saveSystemFiles(SaveSystemFile
    sUtil.java:72)
            - locked <0x00000000f72658d0> (a java.lang.Class for oracle.ideimpl.cmd.
    SaveSystemFilesUtil)
            at oracle.ideimpl.cmd.SaveSystemFilesUtil$1.run(SaveSystemFilesUtil.java
    :25)
            at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:251)
            at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:727)
            at java.awt.EventQueue.access$200(EventQueue.java:103)
            at java.awt.EventQueue$3.run(EventQueue.java:688)
            at java.awt.EventQueue$3.run(EventQueue.java:686)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDo
    main.java:76)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:697)
            at oracle.javatools.internal.ui.EventQueueWrapper._dispatchEvent(EventQu
    eueWrapper.java:169)
            at oracle.javatools.internal.ui.EventQueueWrapper.dispatchEvent(EventQue
    ueWrapper.java:151)
            at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThre
    ad.java:242)
            at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.
    java:161)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:150)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
            at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)
    "AWT-Windows" daemon prio=6 tid=0x0000000009a09800 nid=0x1084 runnable [0x000000
    000a52f000]
       java.lang.Thread.State: RUNNABLE
            at sun.awt.windows.WToolkit.eventLoop(Native Method)
            at sun.awt.windows.WToolkit.run(WToolkit.java:299)
            at java.lang.Thread.run(Thread.java:722)
    "AWT-Shutdown" prio=6 tid=0x0000000009a04800 nid=0x11dc in Object.wait() [0x0000
    00000a42f000]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x00000000f39c2530> (a java.lang.Object)
            at java.lang.Object.wait(Object.java:503)
            at sun.awt.AWTAutoShutdown.run(AWTAutoShutdown.java:287)
            - locked <0x00000000f39c2530> (a java.lang.Object)
            at java.lang.Thread.run(Thread.java:722)
    "Java2D Disposer" daemon prio=10 tid=0x0000000009a02000 nid=0xedc in Object.wait
    () [0x000000000a32f000]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x00000000f3c027e8> (a java.lang.ref.ReferenceQueue$Lock)
            at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:135)
            - locked <0x00000000f3c027e8> (a java.lang.ref.ReferenceQueue$Lock)
            at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:151)
            at sun.java2d.Disposer.run(Disposer.java:145)
            at java.lang.Thread.run(Thread.java:722)
    "Service Thread" daemon prio=6 tid=0x00000000097fa800 nid=0x14bc runnable [0x000
    0000000000000]
       java.lang.Thread.State: RUNNABLE
    "C2 CompilerThread1" daemon prio=10 tid=0x00000000097e8000 nid=0x15e0 runnable [
    0x0000000000000000]
       java.lang.Thread.State: RUNNABLE
    "C2 CompilerThread0" daemon prio=10 tid=0x00000000097e0800 nid=0x1494 waiting on
    condition [0x0000000000000000]
       java.lang.Thread.State: RUNNABLE
    "Attach Listener" daemon prio=10 tid=0x00000000097df800 nid=0x15f8 runnable [0x0
    000000000000000]
       java.lang.Thread.State: RUNNABLE
    "Signal Dispatcher" daemon prio=10 tid=0x00000000097de800 nid=0x161c waiting on
    condition [0x0000000000000000]
       java.lang.Thread.State: RUNNABLE
    "Finalizer" daemon prio=8 tid=0x00000000078bb800 nid=0x4cc in Object.wait() [0x0
    00000000976f000]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            - waiting on <0x00000000f39fbe28> (a java.lang.ref.ReferenceQueue$Lock)
            at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:135)
            - locked <0x00000000f39fbe28> (a java.lang.ref.ReferenceQueue$Lock)
            at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:151)
            at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:189)
    "Reference Handler" daemon prio=10 tid=0x00000000078b3000 nid=0x14c4 runnable [0
    x000000000966f000]
       java.lang.Thread.State: RUNNABLE
            at java.lang.Object.notifyAll(Native Method)
            at java.lang.ref.ReferenceQueue.enqueue(ReferenceQueue.java:68)
            - locked <0x00000000f396b3c0> (a java.lang.ref.ReferenceQueue$Lock)
            - locked <0x00000000fe739bb0> (a java.util.WeakHashMap$Entry)
            at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:146)
    "main" prio=6 tid=0x000000000235d000 nid=0xc8c waiting on condition [0x000000000
    0000000]
       java.lang.Thread.State: RUNNABLE
    "VM Thread" prio=10 tid=0x00000000077ca800 nid=0xf24 runnable
    "GC task thread#0 (ParallelGC)" prio=6 tid=0x000000000236e000 nid=0xdb0 runnable
    "GC task thread#1 (ParallelGC)" prio=6 tid=0x000000000236f800 nid=0x6a4 runnable
    "GC task thread#2 (ParallelGC)" prio=6 tid=0x0000000002371000 nid=0x131c runnabl
    e
    "GC task thread#3 (ParallelGC)" prio=6 tid=0x0000000002373000 nid=0x1508 runnabl
    e
    "GC task thread#4 (ParallelGC)" prio=6 tid=0x0000000002376800 nid=0x1608 runnabl
    e
    "GC task thread#5 (ParallelGC)" prio=6 tid=0x0000000002377800 nid=0xdf4 runnable
    "GC task thread#6 (ParallelGC)" prio=6 tid=0x0000000002379000 nid=0x1518 runnabl
    e
    "GC task thread#7 (ParallelGC)" prio=6 tid=0x000000000237a000 nid=0xf50 runnable
    "VM Periodic Task Thread" prio=10 tid=0x0000000009803800 nid=0xfa4 waiting on co
    ndition
    JNI global references: 1601
    Heap
    PSYoungGen      total 51968K, used 43392K [0x00000000fbd60000, 0x00000001000000
    00, 0x0000000100000000)
      eden space 43392K, 100% used [0x00000000fbd60000,0x00000000fe7c0000,0x00000000
    fe7c0000)
      from space 8576K, 0% used [0x00000000ff7a0000,0x00000000ff7a0000,0x00000001000
    00000)
      to   space 12416K, 0% used [0x00000000fe7c0000,0x00000000fe7c0000,0x00000000ff
    3e0000)
    ParOldGen       total 136576K, used 136570K [0x00000000f3800000, 0x00000000fbd6
    0000, 0x00000000fbd60000)
      object space 136576K, 99% used [0x00000000f3800000,0x00000000fbd5e898,0x000000
    00fbd60000)
    PSPermGen       total 86656K, used 86345K [0x00000000e3800000, 0x00000000e8ca00
    00, 0x00000000f3800000)
      object space 86656K, 99% used [0x00000000e3800000,0x00000000e8c52670,0x0000000
    0e8ca0000)
    After a while  I received the  message
    "Your database connection has been reset. Any pending transactions or session state has been lost"
    Please let me know if  you need anything else.

  • Will 1.3 code compiled with 1.4 run on JVM/JRE 1.3?

    Will byte code created with j2se 1.4.2 only run on JRE 1.4.2 and forthcoming versions even if my java source code only contains classes that were available already in version 1.3?
    If so, is it a good idea to install and use the earliest version of java compiler that will digest my code in order to create an applet that is accessible to more users without downloading the latest JRE/JVM?
    Grateful for any help,
    /Sven

    Byte code generated by 1.4.2 javac will run on 1.2 and up (assuming that coming versions keep backwards compatibility). You might want to have a look at javac's cross-compilation capabilities (aka -target switch):
    http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/javac.html#options
    HTH, Markus

Maybe you are looking for

  • Canon scanner doesnt work after upgrading to maverick

    Hi after upgrading to Maverick on my 2.93 GHz Intel core 2 duo processor with 4 GB memory and a 10.9.4 version for my OS X my canon MG5220 all in one printer scanner shows as MP Navigator EX quits unexpectedly.

  • Form included in JSF Fragments doesn't work

    Hi there i have a simple form placed in JSF page fragment, the fragment is included in several pages. It renders , but the button action doesn't do what it is supposed to do. <?xml version="1.0" encoding="UTF-8"?> <!--     Document   : AddAdvertForm

  • File save as

    What happened to file save as . . . ? Now we have this silly duplicate nonsense and then after the duplicate command I have to save to rename it etc. Any extra mouse click for what !!!! Any ideas anybody - Maybe I'm doing something wrong here. Thanks

  • Convert non-ASCII character to decimal value

    Hi all, I have the following problem: When reading a String containing the full spectrum of UTF-8 characters from a BufferedReader: How can I get the decimal value of the String's characters outside the ASCII range? When I try to do a MyBufferedReade

  • SQL Types in Forms

    Hi, Are SQL Types supported in Oracle Forms 10.1.2.0.2 ? Today I had a problem with them . I used a SQL type in forms , I compiled it, tested it, everything was fine but once I used a different database other than the one I used for the compilation,