SQL Developer 1.5.1 - warning messages generated by CREATE TABLE

Hi,
Have an issue with a CREATE TABLE statement - it works correctly, but generates a warning message when used in SQL Developer (1.2 or 1.5.1). Full test case below:
Setup:
drop table samplenames;
drop table customers;
drop table phones;
drop table customers_phone;
drop sequence primkey;
create table samplenames
(name VARCHAR2(10));
insert into samplenames values ('dan');
insert into samplenames values ('joe');
insert into samplenames values ('bob');
insert into samplenames values ('sam');
insert into samplenames values ('weslington');
insert into samplenames values ('sue');
insert into samplenames values ('ann');
insert into samplenames values ('mary');
insert into samplenames values ('pam');
insert into samplenames values ('lucy');
create sequence primkey
start with 1000000
increment by 1;
create table customers as
select primkey.nextval as cust_id,
tmp1.name || tmp2.name as first_name,
tmp3.name || tmp4.name || tmp5.name as last_name
from samplenames tmp1,
samplenames tmp2,
samplenames tmp3,
samplenames tmp4,
samplenames tmp5;
CREATE TABLE PHONES AS
SELECT cust_id, 'H' as phn_loc, trunc(dbms_random.value(100,999)) as area_cde,
trunc(dbms_random.value(1000000,9999999)) as phn_num
FROM customers;
INSERT INTO PHONES
SELECT cust_id, 'B' as phn_loc, trunc(dbms_random.value(100,999)) as area_cde,
trunc(dbms_random.value(1000000,9999999)) as phn_num
FROM customers;
--randomly delete ~10% of records to make sure nulls are handled correctly.
delete from phones
where MOD(area_cde + phn_num, 10) = 0;
create table statement (there are legacy reasons for why this is written the way it is):
CREATE TABLE customers_phone NOLOGGING AS
SELECT cst.*,
piv.HOME_PHONE,
piv.WORK_PHONE
FROM (SELECT cust_id,
MAX(decode(phn_loc, 'H', '(' || area_cde || ') ' ||
substr(phn_num,1,3) || '-' || substr(phn_num,4,4), NULL)) AS HOME_PHONE,
MAX(decode(phn_loc, 'B', '(' || area_cde || ') ' ||
substr(phn_num,1,3) || '-' || substr(phn_num,4,4), NULL)) AS WORK_PHONE
FROM phones phn
WHERE phn_loc IN ('H', 'B')
AND cust_id IS NOT NULL
AND EXISTS (SELECT NULL
FROM customers
WHERE cust_id = phn.cust_id)
GROUP BY cust_id) piv,
customers cst
WHERE cst.cust_id = piv.cust_id (+)
Warning message output:
"Error starting at line 1 in command:
CREATE TABLE customers_phone NOLOGGING AS
SELECT cst.*,
piv.HOME_PHONE,
piv.WORK_PHONE
FROM (SELECT cust_id,
MAX(decode(phn_loc, 'H', '(' || area_cde || ') ' || substr(phn_num,1,3) || '-' || substr(phn_num,4,4), NULL)) AS HOME_PHONE,
MAX(decode(phn_loc, 'B', '(' || area_cde || ') ' || substr(phn_num,1,3) || '-' || substr(phn_num,4,4), NULL)) AS WORK_PHONE
FROM phones phn
WHERE phn_loc IN ('H', 'B')
AND cust_id IS NOT NULL
AND EXISTS (SELECT NULL
FROM customers
WHERE cust_id = phn.cust_id)
GROUP BY cust_id) piv,
customers cst
WHERE cst.cust_id = piv.cust_id (+)
Error report:
SQL Command: CREATE TABLE
Failed: Warning: execution completed with warning"
I am on 10.2.0.3. The CREATE TABLE always completes successfully, but the warning bugs me, and I have had no success tracking it down since there is no associated numberr.
Anyone have any ideas?

Hi ,
The Oracle JDBC driver is returning this warning so I will be logging an issue with them, but for the moment SQL Developer will continue to report the warning as is.
The reason for the warning is not clear or documented as far as I can tell,
but I have replicated the issue with a simpler testcase which makes it easier to have a guess about the issue :)
----START
DROP TABLE sourcetable ;
CREATE TABLE sourcetable(col1 char);
INSERT INTO sourcetable VALUES('M');
DROP TABLE customers_phone;
CREATE TABLE customers_phone AS
SELECT MAX(decode(col1, 'm','OK' , NULL)) COLALIAS
FROM sourcetable;
----END
The warning occurs in the above script in SQL Developer , but not in SQL*Plus.
The warning disappears when we change 'm' to 'M'.
The warning disappears when we change NULL to 'OK2'
In all cases the table creates successfully and the appropriate values inserted.
My gut feeling is ...
During the definition of customers_phone, Oracle has to work out what the COLALIAS datatype is.
When it sees NULL as the only alternative (as sourcetable.col1 = 'M' not 'm') it throws up a warning. It then has to rely on the 'OK' value to define the COLALIAS datatype, even though the 'OK' value wont be inserted as sourcetable.col1 = 'M' and not 'm'. So Oracle makes the correct decision to define the COLALIAS as VARCHAR2(2), but the warning is just to say it had to use the alternative value to define the column.
Why SQL*Plus does not report it and JDBC does, I'm not sure. Either way it doesn't look like a real issue.
Again, this is just a guess and not a fact.
Just though an update was in order.
Regards,
Dermot.

Similar Messages

  • How to trap warning messages generated from the background processing?

    Hi all,
    Following is my requirement, i want to know whether it can be done and how?
    The credit management (CM) warning messages generated as a result of the CM background processes, where do the messages go? Can you trap them and include them in an interface control report?
    Thanks

    Hi
    If it's created a job for that process, you can try to read the log: here you should find all triggered messages, so the warning ones too.
    U can try to use fm like BP_JOBLOG_READ or BP_JOBLOG_SHOW in order to get the log.
    Max

  • BUG in Oracle SQL Developer 3.0.04 on the "generating DLL" with comments?

    I'm newbie on oracle, but I think that I found out a bug in Oracle SQL Developer version 3.0.04 on the "generating DLL" tool using "comments".
    I will describe the steps that I gave:
    I created a view, but after I test it I had to change my “where” condition, so I comment the old code and then I wrote the new “where” condition below. After I done that I tried to look at the sql code of my view using “generating DLL” tool, but oracle sql developer only shown me half of the code, a lot of code were missing. Then I began with some test trying to understand what happen and I notice that if I put an invalid sql code in my comment the generating DLL start working with no problems, for example(pseudo-code):
    (COMMENT WITH VALID SQL CODE the "Generating SQL" don't work:)
    CREATE OR REPLACE VIEW <user>.<view_name> ( <column1>,<column2> )
    AS
    SELECT column1, column2
    FROM table1
    INNER JOIN
    (SELECT
    FROM table2
    INNER JOIN .....
    INNER JOIN ....
    --where time_stamp = (select max(time_stamp) from .....)
    WHERE time_stamp >= TRUNC(sysdate)
    ) t1 ON t1.ID = ....
    AND ..... >= TRUNC(sysdate)
    ORDER BY ....
    Generating DLL returns this(when the error occurs):
    CREATE OR REPLACE VIEW <user>.<view_name> ( <column1>,<column2> )
    AS
    (COMMENT WITH VALID SQL CODE the "Generating SQL" work with no problems:)
    CREATE OR REPLACE VIEW <user>.<view_name> ( <column1>,<column2> )
    AS
    SELECT column1, column2
    FROM table1
    INNER JOIN
    (SELECT
    FROM table2
    INNER JOIN .....
    INNER JOIN ....
    --where
    WHERE time_stamp >= TRUNC(sysdate)
    ) t1 ON t1.ID = ....
    AND ..... >= TRUNC(sysdate)
    ORDER BY ....
    I believe that "Generating DLL" tool have some problem with the comments, I also used /*...*/ to comment but the problem is still active.
    I notice as well that if I started to add some more comments along the code, the conditions migth change, so I think the problem is related with "comments" code.
    Would you mind telling me if this is a real bug or if I'm doing anything wrong.
    Thank you in advance,
    Rodrigo Campos
    Edited by: 894886 on 3/Nov/2011 5:29

    Hi Rodrigo,
    Thank you for reporting this. The only bug I see currently logged on a comment affecting the generated View DDL involves ending the last line of the definition with a comment, which treats the ending semi-colon (even if on a different line) as part of the comment. That is actually related to a low-priority bug against an Oracle database API.
    Unfortunately, your pseudo-code is a bit complex. Trying a few quick, simpler tests against the standard HR schema did not reproduce the issue. I tried INNER JOIN, and nested SELECTs. It would help greatly if you could provide a test case compilable against one of the standard schema, like HR or SCOTT.
    Regards,
    Gary
    SQL Developer Team

  • Email notification of warning messages generated in /var/adm/messages

    I�m using �mdmonitord� to periodically check status of my disks in RAID 1 (using Solaris Volume Management) If/when problem occurs the errors/warnings will be logged to[b] /var/adm/messages file. What do I need to configure/enable to monitor /var/adm/messages for particual WARNING messages and to notify me via email.
    Similar utility on LINUX is Logwatch: http://www2.logwatch.org:81/index.html

    Check /etc/init.d/dtcp , i guess it would be copyrighted to fujitsu-siemens if its the fujitsu dtcp. You can also9 do a pkginfo -l SMAWdtcp, which seems to be the name of the fujitsu package. Hmm, odd name for a Fujitsu package.
    Actually i found the following Fujitsu bug:
    A0559315 Fix flood of messages like dml_send DB_PS_Udp_Con_Remove_List failed
    - caused by trying to send the message to a node that is down.
    .. which seems rather familiar.
    Its fixed with fujitsu patch 901199-08
    Other Fujitsu DTCP patches are
    901191-08 and 901244-01
    Note that to get Fujitsu patches you need a special account, once you have an account you can download them from http://patches.ts.fujitsu.com/

  • Warning messages on programatically created document

    Hi,
    My program reads the data from a file which is into SharePoint 2010 and massage with the list information. It finally creates a new document and prompt the end user to save it. When user opens the saved document it consecutively prompts with the below two
    message -
    "The file abc.docx" cannot be opened because there are problem with the contents" [ Details: File is corrupt and cannot be opend"
    How to turn off this warning messages? When I re-save this document with different name then the above messages stops prompting. I want these messages should not appear even at first time as well. I tried to add these document on trusted location and also
    removed the protection settings but it does not help.
    Any help will be greatly appreciated.
    Best Regards,
    Imran

    Hi,
    Which program are you using to create the Word documents? Does the program create the document based on a template? If so, please check your template extension and make sure it’s saved as .docx and not .dotx. Additionally, be sure that the template is not
    in “Compatibility Mode”.
    In addition, if you are using other way to create the document, please also check if the link below applies. It provided a workaround to this issue.
    http://social.msdn.microsoft.com/Forums/en-US/87e03278-2e01-47fe-820f-cffe715680c8/able-to-open-word-doc-created-but-with-errors
    Regards,
    Steve Fan
    TechNet Community Support

  • ((  SQL DEVELOPER UserName Password??? --- To Access APEX TABLES ))

    How do I access APEX tables from SQL DEVELOPER?
    What do I use as a USERNAME and PASSWORD--
    inside SQL DEVELOPER?
    Hello,
    I have APEX installed on my machine.
    WINDOWS 7 PROFESSIONAL 64 BIT.
    I also have installed:
    ORACLE XE
    and
    SQL DEVELOPER.
    I have applications I have created in APEX
    with various tables.
    Question:
    How can I access my APEX tables from
    within SQL DEVELOPER?
    What USERNAME and PASSWORD do I use?
    I can do this with
    HR
    SQL DEVELOPER USERNAME = HR
    PASSWORD = HR
    This works fine.
    But what about for my own APEX TABLES
    I created inside my own workspace
    inside APEX?
    For example:
    LOGIN TO APEX:
    http://127.0.0.1:8080/apex/
    If my
    APEX WORKSPACE = DAVID_WS
    SCHEMA = DAVID_SC
    APEX USERNAME = DAVIDAPEX_UN
    APEX PASSWORD = DAVIDAPEX_PW
    LOGIN TO APEX ADMIN:
    http://localhost:8080/apex/apex_admin
    APEXADMIN USERNAME = DAVIDADMIN_UN
    APEXADMIN PASSWORD = DAVIDADMIN_PW
    So, given the above 6
    NAMES and PASSWORDS above:
    SQL DEVELOPER USERNAME = ????
    SQL DEVELOPER PASSWORD = ????
    Thanks a lot for your help!
    David
    Edited by: DAVID888 on Feb 3, 2011 11:53 PM

    Hello david,
    When you created your workspace with the below details, if the schema "DAVID_SC" was created through APEX, then you should have also specified the password as well.
    APEX WORKSPACE = DAVID_WS
    SCHEMA = DAVID_SC
    APEX USERNAME = DAVIDAPEX_UN
    APEX PASSWORD = DAVIDAPEX_PWIf you dont remember the password for "DAVID_SC", you can log on to your Oracle XE database as a "SYSTEM" user and reset the password of "DAVID_SC".
    Once that is done, you can log on to SQL developer with :
    username : david_sc
    password : <your_new_password>
    Hope it is clear and plz refer to the APEX documentation to get a better understanding of it.

  • SQL Developer no longer letting me look at the same table name on 2 servers

    I used to be able to look at the same table (such as; "ATS_Reminders") on both my development box and my production box at the same time. Now when I connect to both databases, if I try to open the same table on the second box, the first table closes so I can't look at them side by side. Is there a way to fix this annoying behavior?
    I'm on Windows 7 running:
    Java(TM) Platform     1.6.0_11
    Oracle IDE     3.1.07.42
    Versioning Support     3.1.07.42

    Hi bucketofsquid -
    You need to pin the 1st editor. This can be done manually by clicking the freeze view button on the object viewer toolbar or automatically by setting auto freeze on in preferences. Tools->Preferences->Database->ObjectViewer->Automatically Freeze Object Viewer Windows
    Brian Jeffries
    SQL Developer Team

  • Sql developer 3.0: could be possible to avoid creating connections

    Hi, when connecting from oracle forms, you don't have to create a connection, in the same way I don't know if could be possible to avoid creating connections when you are using a tnsnames.ora archive.
    simple to choose the connection as in oracle forms, and the posibility to save the password.
    thank you

    As stated in the forum announcement, you can request this at the SQL Developer Exchange, so other users can vote and add weight for possible future implementation.
    Regards,
    K.

  • Avoiding PLW-07202 warning in SQL Developer

    Hi All,
    I am using EM Console to create package, now I have switched over to SQL Developer. When I was using EM Console, It was not showing any warning, but that same package when compiled in SQL Developer It show following warning:
    PLW-07202: bind type would result in conversion away from column type
    I want to avoid this warning to occur everytime when I compile.
    How do I do it?
    Help...

    or issue an alter session/alter system yourself or :
    http://www.oracle-base.com/articles/10g/PlsqlEnhancements10g.php#compile_time_warnings
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14261/errors.htm#sthref2096
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/initparams166.htm#REFRN10249

  • SQL Developer create wrong SQL for creation of Database link

    Hi,
    I tried to create Database link to another machine through SQL Developer. and I got error message saying "Sql not properly ended" or similar.
    I copy-paste the sql to sqlplus shell and I found that the problem came from password part of database link so the generated from SQL Plus is something like:
    SQL> CREATE DATABASE LINK mytest CONNECT TO anotherDB IDENTIFIED BY 1234 USING 'OtherServiceName';
    but it should be
    SQL> CREATE DATABASE LINK mytest CONNECT TO anotherDB IDENTIFIED BY "1234" USING 'OtherServiceName';
    so if I type in the password field
    "1234" which is ****** /6 chars/ the database link was created correctly.
    Could you check and fix this in next release of the SQL Developer?
    Otherwise the Application is very good and far ahead from TORA :)

    Thanks, I didn't notice that for passwords. So it's most definately my problem that the SQL Developer . :)
    Thank you for clarification!
    Offtopic: I am searching for DB Comparison tool which could compare 2 schemas and return me the differences and the sync script. Do you know any /free if possible/? There is such thing in TOAD but I am on Linux and I prefer to use something else. :)
    Thank you in advance

  • Spool command in SQL Developer 3.1

    Hi,
    I am using sqldeveloper-3.1.05.97 .
    There are few scripts that I need to run on a EBS sandbox to generate txt files for a analysis tool input .
    The script is meant to be run with SQL * Plus but I am getiing a TNS listener error due to which I want to use SQL Developer.
    The Spool command is able to create file in local directory but the oputput is not the query result but the query itself. Please help if anything is wrong in the syntax below:
    ALTER SESSION SET NLS_DATE_FORMAT = 'MM/DD/YYYY';
    SET NEWPAGE 0
    SET SPACE 0
    SET PAGESIZE 0
    SET ECHO OFF
    SET FEEDBACK OFF
    SET COLSEP |
    SET MARKUP HTML OFF
    SET LINESIZE 600
    SPOOL FND_USER.txt
    SELECT USER_ID, USER_NAME, LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, START_DATE, END_DATE, DESCRIPTION, LAST_LOGON_DATE, PASSWORD_DATE, PASSWORD_ACCESSES_LEFT, PASSWORD_LIFESPAN_ACCESSES, PASSWORD_LIFESPAN_DAYS, EMPLOYEE_ID, CUSTOMER_ID, SUPPLIER_ID
    FROM APPS.FND_USER;
    SPOOL OFF

    Hi Partha,
    It seems the line "SET PAGESIZE 0" is suppressing all output in SQL Developer, and not just "all headings, page breaks, titles, the initial blank line, and other formatting information" as documented for SQL*Plus. Keep in mind that SQL Developer does not yet provide full support for all SQL*Plus formatting commands. For example, without SET PAGESIZE 0, the script output tab shows these messages:
    line 2: SQLPLUS Command Skipped: set NEWPAGE 0
    line 3: SQLPLUS Command Skipped: set SPACE 0
    line 8: SQLPLUS Command Skipped: set MARKUP HTML OFF
    I will log a bug for this.
    Regards,
    Gary
    SQL Developer Team

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

  • Problem in connecting SQL developer to Oracle database

    Hi,I don't know this is the correct forum for my problem
    I Just installed   Oracle Sql developer 3.2.I encountered a problem while creating a new connection with Oracle database 11g..
    The error message says "Status : Failure -Test failed: The Network Adapter could not establish the connection"..
    The command response as follows
    lsnrctl stop
    LSNRCTL for 64-bit Windows: Version 11.2.0.1.0 - Production on 31-OCT-2013 21:52
    :56
    Copyright (c) 1991, 2010, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    TNS-01190: The user is not authorized to execute the requested listener command
    lsnrctl start
    LSNRCTL for 64-bit Windows: Version 11.2.0.1.0 - Production on 31-OCT-2013 21:55
    :49
    Copyright (c) 1991, 2010, Oracle.  All rights reserved.
    TNS-01106: Listener using listener name LISTENER has already been started
    lsnrctl status
    LSNRCTL for 64-bit Windows: Version 11.2.0.1.0 - Production on 31-OCT-2013 21:57
    :07
    Copyright (c) 1991, 2010, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for 64-bit Windows: Version 11.2.0.1.0 - Produ
    ction
    Start Date                31-OCT-2013 20:57:07
    Uptime                    0 days 1 hr. 0 min. 0 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   C:\app\RIYAS\product\11.2.0\dbhome_1\network\admin\lis
    tener.ora
    Listener Log File         c:\app\riyas\diag\tnslsnr\RIYAS-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 "CLRExtProc" has 1 instance(s).
      Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "orcl" has 1 instance(s).
      Instance "orcl", status READY, has 1 handler(s) for this service...
    Service "orclXDB" has 1 instance(s).
      Instance "orcl", status READY, has 1 handler(s) for this service...
    The command completed successfully
    lsnrctl service
    LSNRCTL for 64-bit Windows: Version 11.2.0.1.0 - Production on 31-OCT-2013 21:58
    :28
    Copyright (c) 1991, 2010, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
      Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
        Handler(s):
          "DEDICATED" established:0 refused:0
             LOCAL SERVER
    Service "orcl" has 1 instance(s).
      Instance "orcl", status READY, has 1 handler(s) for this service...
        Handler(s):
          "DEDICATED" established:102 refused:0 state:ready
             LOCAL SERVER
    Service "orclXDB" has 1 instance(s).
      Instance "orcl", status READY, has 1 handler(s) for this service...
        Handler(s):
          "D000" established:0 refused:0 current:0 max:1022 state:ready
             DISPATCHER <machine: RIYAS-PC, pid: 1828>
             (ADDRESS=(PROTOCOL=tcp)(HOST=RIYAS-PC)(PORT=49911))
    The command completed successfully
    set
    ALLUSERSPROFILE=C:\ProgramData
    APPDATA=C:\Users\RIYAS\AppData\Roaming
    CommonProgramFiles=C:\Program Files\Common Files
    CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files
    CommonProgramW6432=C:\Program Files\Common Files
    COMPUTERNAME=RIYAS-PC
    ComSpec=C:\windows\system32\cmd.exe
    FP_NO_HOST_CHECK=NO
    HOMEDRIVE=C:
    HOMEPATH=\Users\RIYAS
    LOCALAPPDATA=C:\Users\RIYAS\AppData\Local
    LOGONSERVER=\\RIYAS-PC
    NUMBER_OF_PROCESSORS=4
    OS=Windows_NT
    Path=C:\app\RIYAS\product\11.2.0\dbhome_1\bin;C:\app\RIYAS\product\11.2.0\dbhome
    _2\bin;C:\Program Files (x86)\PC Connectivity Solution\;C:\Program Files\Common
    Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsof
    t Shared\Windows Live;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\
    Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\wi
    ndows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPo
    werShell\v1.0\;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;
    C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program File
    s (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\I
    ntel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\Intel\Open
    CL SDK\2.0\bin\x86;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x64;C:\Progra
    m Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\P
    rogram Files (x86)\Windows Live\Shared
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
    PROCESSOR_ARCHITECTURE=AMD64
    PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 58 Stepping 9, GenuineIntel
    PROCESSOR_LEVEL=6
    PROCESSOR_REVISION=3a09
    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
    SystemDrive=C:
    SystemRoot=C:\windows
    TEMP=C:\Users\RIYAS\AppData\Local\Temp
    TMP=C:\Users\RIYAS\AppData\Local\Temp
    USERDOMAIN=RIYAS-PC
    USERNAME=RIYAS
    USERPROFILE=C:\Users\RIYAS
    windir=C:\windows
    windows_tracing_flags=3
    windows_tracing_logfile=C:\BVTBin\Tests\installpackage\csilogfile.log
    Pls help..

    You don't say what you have done to set up a connection.
    This error is usually caused by something like using the wrong host name, or port number.

  • Having trouble connecting SQL Developer to database on LINUX machine

    Having trouble connecting SQL Developer to database on LINUX machine
    Hello,
    I am trying to connect my windows 7 home premium machine to an oracle database 11g on a RedHat 5 machine using SQL Developer. i got this error message on SQL Developer
    Status : Failure - Test failed :The Network Adapter could not establish the connection
    on Linux
    LSNRCTL> status
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    Start Date                03-APR-2013 16:13:13
    Uptime                    7 days 22 hr. 16 min. 41 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   /u01/app/oracle/product/11.2.0/db_1/network/admin/listener.ora
    Listener Log File         /u01/app/oracle/product/11.2.0/db_1/network/log/listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=172.X.X.X)(PORT=1521)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "orc11g" has 1 instance(s).
    Instance "orc11g", status READY, has 1 handler(s) for this service...
    Service "orc11gXDB" has 1 instance(s).
    Instance "orc11g", status READY, has 1 handler(s) for this service...
    Service "orc11g_XPT" has 1 instance(s).
    Instance "orc11g", status READY, has 1 handler(s) for this service...
    The command completed successfully
    LSNRCTL> and TNSPING
    tnsping 172.x.x.x
    TNS Ping Utility for Linux: Version 10.2.0.1.0 - Production on 11-APR-2013 14:32:17
    Copyright (c) 1997, 2005, Oracle.  All rights reserved.
    Used parameter files:
    /u01/app/oracle/product/11.2.0/db_1/network/admin/sqlnet.ora
    Used EZCONNECT adapter to resolve the alias
    Attempting to contact (DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=172.x.x.x))(ADDRESS=(PROTOCOL=TCP)(HOST=172.x.x.x)(PORT=1521)))
    OK (0 msec)
    [oracle@ltebilling ~]$Tnsnames.ora On Linux ,
    ORC11G =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 172.x.x.x)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orc11g)
    )Listner on Linux ,
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /u01/app/oracle/product/11.2.0/db_1)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 172.x.x.x)(PORT = 1521))
    )/ect/hosts Linux ,
    # Do not remove the following line, or various programs
    # that require network functionality will fail.
    127.0.0.1               localhost.localdomain localhost
    172.x.x.x             LTEBillingand there is no problem of ping linux from windows
    Edited by: user11309581 on Apr 11, 2013 3:16 PM

    yes really i'm already enaple the port 1521 and SELINUX=disabled
    [root@ltebilling ~]# /etc/init.d/iptables status
    Table: filter
    Chain INPUT (policy ACCEPT)
    num  target     prot opt source               destination
    1    RH-Firewall-1-INPUT  all  --  0.0.0.0/0            0.0.0.0/0
    Chain FORWARD (policy ACCEPT)
    num  target     prot opt source               destination
    1    RH-Firewall-1-INPUT  all  --  0.0.0.0/0            0.0.0.0/0
    Chain OUTPUT (policy ACCEPT)
    num  target     prot opt source               destination
    Chain RH-Firewall-1-INPUT (2 references)
    num  target     prot opt source               destination
    1    ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0
    2    ACCEPT     icmp --  0.0.0.0/0            0.0.0.0/0           icmp type 255
    3    ACCEPT     esp  --  0.0.0.0/0            0.0.0.0/0
    4    ACCEPT     ah   --  0.0.0.0/0            0.0.0.0/0
    5    ACCEPT     udp  --  0.0.0.0/0            224.0.0.251         udp dpt:5353
    6    ACCEPT     udp  --  0.0.0.0/0            0.0.0.0/0           udp dpt:631
    7    ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0           tcp dpt:631
    8    ACCEPT     all  --  0.0.0.0/0            0.0.0.0/0           state RELATED,ESTABLISHED
    9    ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0           state NEW tcp dpt:1521
    10   ACCEPT     tcp  --  0.0.0.0/0            0.0.0.0/0           state NEW tcp dpt:22
    11   REJECT     all  --  0.0.0.0/0            0.0.0.0/0           reject-with icmp-host-prohibitedbut from windows system when i'm try tnsping i got this error
    C:\Windows\system32>tnsping orc11g
    TNS Ping Utility for 64-bit Windows: Version 11.2.0.1.0 - Production on 11-APR-2
    013 14:44:09
    Copyright (c) 1997, 2010, Oracle.  All rights reserved.
    Used parameter files:
    D:\app\ubai\product\11.2.0\dbhome_2\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = 172.x.x
    .x)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = orc11g))
    TNS-12535: TNS:operation timed out
    C:\Windows\system32>

Maybe you are looking for

  • Search not working in SharePoint 2013 RTM

    I recently setup SharePoint 2013 Development environment on a VM with complete farm install on a same machine. I configured setup using configuration wizard and added some documents to the root site. As soon as I searched it gave "Some Error Occured"

  • SOLVED: is usbip usb redirector working for anyone?

    I am looking for USB redirector, and naturally tried usbip package. So far, cannot make it work: #usbipd --daemon # ps -ef | grep usbip root 16722 1 0 22:28 ? 00:00:00 usbipd --daemon # lsusb Bus 004 Device 002: ID 05da:6080 Microtek International, I

  • IPhone 4 - Usage (Other) Varies Wildly: 4gb mysteriously disappearing

    Never had this problem before. I am using an iPhone 4 (16gb)  with iOS 7.1.1. I use iTunes Match to manage my music. Until recently, whenever my available space would start dwindling, I would go into Settings > General > Usage and delete the music th

  • Error when instaling itunes 8.2

    i tried to upgrade my itunes to 8.2 but it only succeded in corrupting my 8.1 and turning the language into spanish. i deleted all of the itunes aplications but wasent able to re-install it. i received an error. "There is a problem with this windows

  • Diskspace Requirement for Trex Installation

    Hi guys, I just installed Trex server to one of our systems. It will be used for indexing and searching for our portal system which is running on another server. While checking Trex 7.0 Installation guide, hard disk capacity took my attention. On the