Nls_database_parameters

Hi All,
When I query with "SELECT * FROM nls_database_parameters" I get NLS_LANGUAGE as "AMERICAN" and NLS_TERRITORY as "AMERICA" .
Could you please tell me the steps to change thes as NLS_LANGUAGE = GERMAN and NLS_TERRITORY as "GERMANY" ?
Thanks !

Actually, the picture looks like this: NLS_DATABASE_PARAMETERS are used to evaluate CHECK constraints. They can be overridden only by specifying the parameters in SQL functions themselves.
Example:
Let assume that NLS_DATABASE_PARAMETERS shows NLS_LANGUAGE=AMERICAN and thus, usually, NLS_DATE_LANGUAGE=AMERICAN. Then:
create table TAB1 ( COL1 date, check (TO_CHAR(COL1,'MON') = 'DEZ') );
alter session set nls_language=GERMAN;
insert into TAB1 values (date '2011-12-01');The above code will fail because TO_CHAR will be evaluated with NLS_DATE_LANGUAGE=AMERICAN and the 1st of December will return DEC and not DEZ.
The below code will work:
create table TAB1 ( COL1 date, check (TO_CHAR(COL1,'MON','NLS_DATE_LANGUAGE=GERMAN') = 'DEZ') );
alter session set nls_language=GERMAN;
insert into TAB1 values (date '2011-12-01');Here, the third parameter to TO_CHAR overrides the NLS_DATABASE_PARAMETERS. You should usually use this third parameter to make your CHECK constraint independent of the database environment.
Neither NLS_SESSION_PARAMETERS nor NLS_INITIALIZATION_PARAMETERS influence the above example.
-- Sergiusz

Similar Messages

  • Nls_database_parameters- nls_length_semantics Help!

    Hi all!
    I have to create a database with the parameter nls_length_semantics set to char but I don't know how to do it!
    In a new machine, where was installed only the oracle client(10), I install a new database software (10g), during the installation process I was unable to select the character set.
    Then I install the first instance and select AL32utf8 as character set and select length semantics= char.
    But the select * from nls_database_parameters shows nls_length_semantics=byte ko
    and
    select * from nls_instance_parameters shows nls_length_semantics= char ok
    how can I do to set both with nls_length_semantics= char?
    Yes I will reinstall the database but I do not understand what was wrong?
    Thank you for help
    Mario

    Execute:
    ALTER SYSTEM SET NLS_LENGTH_SEMANTICS=CHAR scope=both;
    And restart the database - despite scope is both, only after restart it will be changed.
    But there is a Bug 1488174 - and this alter system depending on version can have no effect even after restart. The only way to modify is then to change init.ora (create from spfile pfile, change parameter, startup and create spfile from pfile, restart once more database and start with spfile).
    And by Oracle recomendation:
    +Do NOT set the NLS_LENGTH_SEMANTICS=CHAR during database creation, create the database with NLS_LENGTH_SEMANTICS=BYTE (or not set) and set NLS_LENGTH_SEMANTICS=CHAR after the database creation.+
    For more details reffer to metalink note 144808.1

  • Import error on Oracle Database Express 10.2.0.1.0

    Hi,
    I try to import data from oracle V10.01.02 running on SUSE10 Linux to
    oracle 10g (10.1.0.2.0) running on Windows Server 2003.
    I am able to import the big part from my ata, but not all data.
    The begin of my log file is:
    Connected to: Oracle Database 10g Enterprise Edition Release 10.1.0.2.0
    - Production
    With the Partitioning, OLAP and Data Mining options
    Export file created by EXPORT:V10.01.00 via conventional path
    And after some time I receive:
    IMP-00019: row rejected due to ORACLE error 12899
    IMP-00003: ORACLE error 12899 encountered
    ORA-12899: value too large for column "SAFCI"."EMP"."NAME"
    (actual: 65, maximum: 64)
    Column 1 1000005025
    Column 2 ??????? ???????
    Column 3 19-SEP-2002:00:00:00
    Column 4 9089
    Column 5 ??. ?????
    Column 6 1.9828
    Column 7 377.77
    Column 8 75.55
    Column 9 ???????????? ???????? ? ??? ???? ? 32 ??.
    Column 10 19-SEP-2002:00:00:00
    Column 11 ?????? ?????, ?.?. 172747675, ???. 23.11.200?
    Column 12 ????????? ?????????
    Column 13 ? ????
    Column 14 T
    Column 15
    Column 16 F
    IMP-00019: row rejected due to ORACLE error 12899
    IMP-00003: ORACLE error 12899 encountered
    ORA-12899: value too large for column "SAFCI"."EMP"."NAME"
    (actual: 65, maximum: 64)
    Column 1 1000006408
    Column 2 ??????? ???????
    Column 3 05-NOV-2002:00:00:00
    Column 4 9089
    Column 5 ??. ?????
    Column 6 1.939
    Column 7 82
    Column 8 16.4
    Column 9 ?????????? ? ???? ???? ? 40 ??.
    Column 10 05-NOV-2002:00:00:00
    Column 11 ?????? ?????, ?.?. 172747675, ???. 23.11.200?
    Column 12 ????????? ?????????
    Column 13 ? ????
    Column 14 T
    Column 15
    Column 16 F 36943 rows imported
    I can not understand this problem, because I exported the hole user and
    also try to import the hole user in my new system.
    Pls., can some one point me to some paper about this problem or help me
    to solve the problem.
    Thanks
    configuration Oracle10g (EXP source)
    SQLWKS> select * from nls_database_parameters
    2>
    PARAMETER VALUE
    NLS_LANGUAGE BRAZILIAN PORTUGUESE
    NLS_TERRITORY BRAZIL
    NLS_CURRENCY R$
    NLS_ISO_CURRENCY BRAZIL
    NLS_NUMERIC_CHARACTERS ,.
    NLS_CHARACTERSET WE8ISO8859P1
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD/MM/RR
    NLS_DATE_LANGUAGE BRAZILIAN PORTUGUESE
    NLS_SORT WEST_EUROPEAN
    NLS_TIME_FORMAT HH24:MI:SSXFF
    NLS_TIMESTAMP_FORMAT DD/MM/RR HH24:MI:SSXFF
    NLS_TIME_TZ_FORMAT HH24:MI:SSXFF TZR
    NLS_TIMESTAMP_TZ_FORMAT DD/MM/RR HH24:MI:SSXFF TZR
    NLS_DUAL_CURRENCY Cr$
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_RDBMS_VERSION 10.1.0.2.0
    configuration Oracle10g Express (IMP destination)
    SQL> select * from nls_database_parameters;
    PARAMETER VALUE
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CURRENCY $
    NLS_ISO_CURRENCY AMERICA
    NLS_NUMERIC_CHARACTERS .,
    NLS_CHARACTERSET AL32UTF8
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD-MON-RR
    NLS_DATE_LANGUAGE AMERICAN
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY $
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_RDBMS_VERSION 10.2.0.1.0

    Hi
    Your import database use a multibyte characterset, your export db a singlebyte cs.
    This means, a char can need more than 1 byte.
    Try this before import (and before create tables!!):
    alter system set nls_length_semantics=char;Greetings
    Sven

  • Problem with Arabic characters

    Hi:
    I don't know if this is the correct place to post the question, but here it goes...
    I have an SQL 2005 database, connected via a Linked Server to an Oracle Database.
    I have a table in SQL that contains arabic characters, and I need to insert it into an Oracle table.
    These characters appear as "????" after being inserted in the oracle table.
    I guess I hace some collation/characterset problem, but cannot finf the solution.
    The column where the arabic characyers are saved in SQL is defined as:
         [Remarks] [nvarchar](1000) NULL,
    And default SQL server collation is: SQL_Latin1_General_CP1_CI_AS
    When I do a select on this table, it can see arabic correctly.
    ORACLE NLS CONFIGURATION IS:
    PARAMETER VALUE
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CURRENCY $
    NLS_ISO_CURRENCY AMERICA
    NLS_NUMERIC_CHARACTERS .,
    NLS_CHARACTERSET AR8MSWIN1256
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD-MON-RR
    NLS_DATE_LANGUAGE AMERICAN
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY $
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_RDBMS_VERSION 11.1.0.6.0
    The sql sentence in SQL server that moves the data to oracle is:
    INSERT INTO openquery(Oracle_DB, 'select Ticket_NO,Remarks from webportal.webcc_escal_det')
         (Ticket_NO,Remarks )
         SELECT Ticket_NO, Remarks
         FROM Details(nolock)
    Thanks in advance!!
    Mariana

    I think first you should check your character set
    SELECT * FROM NLS_DATABASE_PARAMETERS where parameter = 'NLS_CHARACTERSET'
    For oracle to display correctly, you need to change your character set that caters to Arabic

  • How to rename element (node) names in an XMLType column?

    I have a source table with a xml data stored in an XMLType column.
    The xml contains elements/nodes identified by numbers. I need to replace the numbers with the appropriate names.
    The plsql below does this, but has two issues:
    i. It selects the data into a clob and does a text replace on the elements in a loop. This works, but is super slow for 3500+ xml rows (about 500 node pairs per row).
    ii. Once the data has had the element numbers replaced with the names, it inserts the new xml (clob wrapped in xmltype function) into the table with the XMLType attribute.
    The problem with the latter action is that it is failing due to nls client vs server settings, or so it appears from what I could dig up. The actual error message:
    ORA-19202: Error occurred in XML processing
    LPX-00242: invalid use of ampersand ('&') character (use &)
    Error at line 3
    There are come entities in the original xml like "" (the degree symbol).
    My question is two-fold:
    a). Can I replace the element names without straying from the xmltype datatype? If so, how?
    b). If I cannot do "a.)", then what must I do ensure that the clob gets converted correctly to xmltype and inserted into the table?
    SQL> select <some rows> from nls_database_parameters ;
    PARAMETER VALUE
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CHARACTERSET WE8ISO8859P1
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_RDBMS_VERSION 10.2.0.1.0
    SQL> SELECT * FROM NLS_SESSION_PARAMETERS;
    PARAMETER VALUE
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    ----code below-----
    (note, this is a stripped down version of the original, so there may be typos)
    declare
    l_xmlclob CLOB;
    l_newxml XMLType;
    v_record_uid NUMBER(20);
    CURSOR my_cur IS
    select a.elementname,b.tagname
    from t_elements a, t_tags b
    where (a.element_uid = b.element_uid)
    begin
    select br.xml_data.getClobVal() xml_data into l_xmlclob from t_elements;
    FOR my_rec IN my_cur LOOP
    l_xmlclob := replace(l_xmlclob,my_cur.elementname,my_cur.maptag_name);
    END LOOP;
    l_newxml := XMLType(l_xmlclob);
    insert into test_translated_xml (xml_data) values (l_newxml);
    end;
    (hopefully I haven't missed anything)
    Any tips or hints would be much appreciated.
    Thanks!

    Hello again,
    Take a look at html entity codes: http://www.w3schools.com/tags/ref_entities.asp.
    You can use this:
    insert into t values (xmltype('<test>'||dbms_xmlgen.convert('this is a test &')||'deg;</test>'));
    or
    insert into t values (xmltype('<test>'||dbms_xmlgen.convert('this is a test &')||'#176;</test>'));
    see this: &deg; (& deg;) or this: &#176; (& #176;)
    SQL*Plus will not display degree character. But this is valid enitity code, and when you generate HTML out of this, it should be displayed properly in web browser.
    HTML is in fact XML, that is validated by specific DTD (Document Type Definition).
    Paweł

  • Characterset mismatch error while export

    Hi,
    I am getting characterset mismatch error while exporting a schema.
    select * from nls_database_parameters where parameter in('NLS_LANGUAGE','NLS_TERRITORY','NLS_CHARACTERSET')
    PARAMETER
    VALUE
    NLS_LANGUAGE
    AMERICAN
    NLS_TERRITORY
    AMERICA
    NLS_CHARACTERSET
    AL32UTF8
    i have set nls_lang on OS level
    NLS_LANG = AMERICAN_AMERICA.AL32UTF8
    C:\oracle\ora92\bin>
    C:\oracle\ora92\bin>
    C:\oracle\ora92\bin>exp hrtemp_v6/hrtemp_v6@testdb file=c:\hrtemp_v6 statistics=
    none
    Export: Release 9.2.0.1.0 - Production on Mon May 14 11:55:58 2007
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Connected to: Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    Export done in WE8ISO8859P1 character set and AL16UTF16 NCHAR character set
    server uses AL32UTF8 character set (possible charset conversion)
    About to export specified users ...
    . exporting pre-schema procedural objects and actions
    . exporting foreign function library names for user HRTEMP_V6
    . exporting PUBLIC type synonyms
    EXP-00008: ORACLE error 6552 encountered
    ORA-06552: PL/SQL: Compilation unit analysis terminated
    ORA-06553: PLS-553: character set name is not recognized
    EXP-00000: Export terminated unsuccessfully
    please suggest , whats wrong here
    thanks & regards

    i have set nls_lang on OS level
    NLS_LANG = AMERICAN_AMERICA.AL32UTF8How and where?
    C:\oracle\ora92\bin>At this command prompt, what do you get back from "set nls"
    You can use
    c:\> set nls_lang=.al32utf8
    ...right before you issue exp command.

  • Reading special characters from a flat file and inserting into DB

    I'm reading data with special characters like . etc from a flat file , assigning the data to variable in my anonymous block and inserting into my DB. But the show up as inverted ? s. Any clues about how to do this?
    If i try to do the insert directly it works. It seems like the error occurs when reading this data into a variable
    thanks for the help
    Lalit Bhatia

    lalit, this is probably an character set problem, the default on Database creation tends to be 7bit Ascii which does not support special characters, it's been a while since I set up a db in this way, but you need to change settings in oracle.ini. The db will need to be restarted for this. Also, to check current settings try:
    select * from NLS_DATABASE_PARAMETERS
    You want an 8bit, unicode or multibyte character set. Sorry I cannot remember moer off the top of my head, try searching on NLS or character set

  • Replacing non-ASCII characters with HTML charcter references

    Hi All,
    In Oracle 10g or greater is there a built-in function that will convert a string with non-ASCII characters like this
    a b č 뮼
    into an ASCII string with HTML character references like this?
    a b & # x 0 1 0 D ; & # x B B B C ;
    (note I had to include spaces between each character in the sample code for message to prevent the forum software from converting my text)
    I tried using
    utl_i18n.escape_reference( val, 'us7ascii' )
    but for some reason it returns
    a b c & # x B B B C ;
    Note how it converted the Western European character "č" to its unaccented counterpart "c", not "& # x 0 1 0 D ;" (is this a bug?).
    I also tried a custom solution using regexp_replace and asciistr (which I can't include here because the forum software chokes on it) but it only returns the correct result for values <=4000 characters long. Unfortunately asciistr doesn't appear to accept CLOB values larger than 4000 characters. It returns an error message like
    (ORA-22835: Buffer too small for CLOB to CHAR or BLOB to RAW conversion (actual: 30251, maximum: 4000) ).
    I'm looking for a solution that works on CLOB data of any size.
    Thanks in advance for any insight you can provide.
    Joe Fuda

    So with that (UTF8) in mind, let's take another look.....
    As shown below, I used a AL32UTF8 database.
    Note: I did not use a unicode capable tool for querying. So I set console mode code page to 1250 just to have č displayed properly (instead of posing as an è).
    Also, as a result of using windows-1250 for client character set, in the val column and in the second select's ncr column (iso8859-1), è (00e8) has been replaced with e through character set conversion going from server back to client.
    Running the same code on a database with a db character set such as we8mswin1252, that doesn't define the č (latin small c with caron) character, would yield results with a c in the ncr column.
    C:\>chcp 1250
    Aktuell teckentabell: 1250
    C:\>set nls_lang=.ee8mswin1250
    C:\>sqlplus test/test
    SQL*Plus: Release 11.1.0.6.0 - Production on Fri May 23 21:25:29 2008
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the OLAP option
    SQL> select * from nls_database_parameters where parameter like '%CHARACTERSET';
    PARAMETER              VALUE
    NLS_CHARACTERSET       AL32UTF8
    NLS_NCHAR_CHARACTERSET AL16UTF16
    SQL> select unistr('\010d \00e8') val, utl_i18n.escape_reference(unistr('\010d \00e8'),'us7ascii') NCR from dual;
    VAL  NCR
    č e  c e
    SQL> select unistr('\010d \00e8') val, utl_i18n.escape_reference(unistr('\010d \00e8'),'we8iso8859p1') NCR from dual;
    VAL  NCR
    č e  &# x10d; e     <- "è"
    SQL> select unistr('\010d \00e8') val, utl_i18n.escape_reference(unistr('\010d \00e8'),'ee8iso8859p2') NCR from dual;
    VAL  NCR
    č e  č &# xe8;
    SQL> select unistr('\010d \00e8') val, utl_i18n.escape_reference(unistr('\010d \00e8'),'cl8iso8859p5') NCR from dual;
    VAL  NCR
    č e  &# x10d; &# xe8;In the US7ASCII case, where it should be possible for all non-ascii characters to be escaped, it seems as if the actual escape step is skipped over.
    Hope this helps to understand whether utl_i8n is usable or not in your case.
    Message was edited by:
    orafad
    Fixed replaced character references :)

  • Fatal crash and damaged connections

    Hi,
    I was running a long query in an unshared connection, then opened a table and tried to switch to the Data tab, but sqldev froze.
    I thought it was either some regression bug on locking the UI until the query finished, or the other type of deadlock I am frequently experiencing.
    However, sqldev never came back. A stack dump apparently revealed some new stuff, so maybe this is different:
    Full thread dump Java HotSpot(TM) Client VM (10.0-b19 mixed mode):
    "worksheet" prio=6 tid=0x2e8ee400 nid=0x78c runnable [0x2efbf000..0x2efbfc94]
       java.lang.Thread.State: RUNNABLE
            at java.net.SocketInputStream.socketRead0(Native Method)
            at java.net.SocketInputStream.read(SocketInputStream.java:129)
            at oracle.net.ns.Packet.receive(Packet.java:239)
            at oracle.net.ns.DataPacket.receive(DataPacket.java:92)
            at oracle.net.ns.NetInputStream.getNextPacket(NetInputStream.java:172)
            at oracle.net.ns.NetInputStream.read(NetInputStream.java:117)
            at oracle.net.ns.NetInputStream.read(NetInputStream.java:92)
            at oracle.net.ns.NetInputStream.read(NetInputStream.java:77)
            at oracle.jdbc.driver.T4CMAREngine.unmarshalUB1(T4CMAREngine.java:1023)
            at oracle.jdbc.driver.T4CMAREngine.unmarshalSB1(T4CMAREngine.java:999)
            at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:584)
            at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.
    java:194)
            at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPrepare
    dStatement.java:785)
            at oracle.jdbc.driver.T4CPreparedStatement.executeMaybeDescribe(T4CPrepa
    redStatement.java:860)
            at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStateme
    nt.java:1186)
            at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePrep
    aredStatement.java:3381)
            at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePrepare
    dStatement.java:3425)
            - locked <0x07f27198> (a oracle.jdbc.driver.T4CConnection)
            at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeQuery(Oracle
    PreparedStatementWrapper.java:1202)
            at oracle.dbtools.raptor.models.ResultSetTableModel.openResultSet(Result
    SetTableModel.java:337)
            at oracle.dbtools.raptor.models.ResultSetTableModel$1.doWork(ResultSetTa
    bleModel.java:673)
            - locked <0x0802da68> (a java.lang.Object)
            at oracle.ide.dialogs.ProgressRunnable.run(ProgressRunnable.java:161)
            at oracle.ide.dialogs.ProgressRunnable.start(ProgressRunnable.java:129)
            at oracle.dbtools.raptor.models.ResultSetTableModel._fetchNext(ResultSet
    TableModel.java:889)
            - locked <0x0802d9d8> (a oracle.dbtools.raptor.models.ResultSetTableMode
    l)
            at oracle.dbtools.raptor.models.ResultSetTableModel.open(ResultSetTableM
    odel.java:350)
            at oracle.dbtools.raptor.models.ResultSetTableModel.open(ResultSetTableM
    odel.java:341)
            at oracle.dbtools.raptor.controls.ResultSetTable.setQuery(ResultSetTable
    .java:604)
            at oracle.dbtools.sqlworksheet.sqlview.SqlEditorMainPanel._setQueryResul
    tSetData(SqlEditorMainPanel.java:1212)
            at oracle.dbtools.sqlworksheet.sqlview.SqlEditorMainPanel.setQueryResult
    Set(SqlEditorMainPanel.java:1150)
            at oracle.dbtools.sqlworksheet.sqlview.SqlEditor$2.construct(SqlEditor.j
    ava:1103)
            at oracle.dbtools.raptor.utils.NamedSwingWorker$2.run(NamedSwingWorker.j
    ava:115)
            at java.lang.Thread.run(Thread.java:619)
    "pool-2-thread-1" prio=6 tid=0x2eb3bc00 nid=0xbdc waiting on condition [0x3064f0
    00..0x3064fb14]
       java.lang.Thread.State: WAITING (parking)
            at sun.misc.Unsafe.park(Native Method)
            - parking to wait for  <0x06be94f0> (a java.util.concurrent.locks.Abstra
    ctQueuedSynchronizer$ConditionObject)
            at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
            at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject
    .await(AbstractQueuedSynchronizer.java:1925)
            at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.jav
    a:358)
            at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.ja
    va:946)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor
    .java:906)
            at java.lang.Thread.run(Thread.java:619)
    "IconOverlayTracker Timer" prio=6 tid=0x2e719800 nid=0xc08 in Object.wait() [0x3
    054f000..0x3054fb94]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            at java.lang.Object.wait(Object.java:485)
            at java.util.TimerThread.mainLoop(Timer.java:483)
            - locked <0x066a50b0> (a java.util.TaskQueue)
            at java.util.TimerThread.run(Timer.java:462)
    "Timer-2" prio=6 tid=0x2ea6a800 nid=0xbf4 in Object.wait() [0x3044f000..0x3044fc
    14]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            at java.lang.Object.wait(Object.java:485)
            at java.util.TimerThread.mainLoop(Timer.java:483)
            - locked <0x066a5130> (a java.util.TaskQueue)
            at java.util.TimerThread.run(Timer.java:462)
    "TextBufferScavenger" prio=6 tid=0x2bcd4400 nid=0x71c in Object.wait() [0x3024f0
    00..0x3024fd94]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
            - locked <0x06579368> (a java.lang.ref.ReferenceQueue$Lock)
            at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
            at oracle.ide.model.TextNode$FacadeBufferReference$PollingThread.run(Tex
    tNode.java:1886)
    "Native Directory Watcher" prio=2 tid=0x2e88c400 nid=0x36c runnable [0x2facf000.
    .0x2facfb94]
       java.lang.Thread.State: RUNNABLE
            at oracle.ide.natives.NativeHandler.enterWatcherThread(Native Method)
            at oracle.ide.natives.NativeHandler$2.run(NativeHandler.java:252)
            at java.lang.Thread.run(Thread.java:619)
    "Swing-Shell" daemon prio=6 tid=0x2ea0a400 nid=0x234 waiting on condition [0x2f9
    cf000..0x2f9cfc14]
       java.lang.Thread.State: WAITING (parking)
            at sun.misc.Unsafe.park(Native Method)
            - parking to wait for  <0x05c69dc0> (a java.util.concurrent.locks.Abstra
    ctQueuedSynchronizer$ConditionObject)
            at java.util.concurrent.locks.LockSupport.park(LockSupport.java:158)
            at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject
    .await(AbstractQueuedSynchronizer.java:1925)
            at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.jav
    a:358)
            at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.ja
    va:946)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor
    .java:906)
            at sun.awt.shell.Win32ShellFolderManager2$ComInvoker$3.run(Win32ShellFol
    derManager2.java:458)
            at java.lang.Thread.run(Thread.java:619)
    "IconOverlayTracker Timer" prio=6 tid=0x2bd54400 nid=0xfe8 in Object.wait() [0x2
    f7cf000..0x2f7cfd14]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            at java.lang.Object.wait(Object.java:485)
            at java.util.TimerThread.mainLoop(Timer.java:483)
            - locked <0x05b68a88> (a java.util.TaskQueue)
            at java.util.TimerThread.run(Timer.java:462)
    "IconOverlayTracker Timer" prio=6 tid=0x2ea0f800 nid=0xfe4 in Object.wait() [0x2
    f5cf000..0x2f5cfd94]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            at java.lang.Object.wait(Object.java:485)
            at java.util.TimerThread.mainLoop(Timer.java:483)
            - locked <0x05b68b08> (a java.util.TaskQueue)
            at java.util.TimerThread.run(Timer.java:462)
    "Meter Updater" prio=6 tid=0x2e649400 nid=0xf34 waiting on condition [0x2f4cf000
    ..0x2f4cfb14]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
            at java.lang.Thread.sleep(Native Method)
            at elephant.insider.view.impl.MeterUpdater$Updater.run(MeterUpdater.java
    :131)
            at java.lang.Thread.run(Thread.java:619)
    "Meter Dispatcher" prio=6 tid=0x2e648800 nid=0xf30 waiting on condition [0x2f3cf
    000..0x2f3cfb94]
       java.lang.Thread.State: TIMED_WAITING (sleeping)
            at java.lang.Thread.sleep(Native Method)
            at elephant.insider.view.impl.MeterUpdater$Dispatcher.run(MeterUpdater.j
    ava:282)
            at java.lang.Thread.run(Thread.java:619)
    "Adapter Monitor" prio=6 tid=0x2b9e5000 nid=0xf1c waiting on condition [0x2f2cf0
    00..0x2f2cfc14]
       java.lang.Thread.State: TIMED_WAITING (parking)
            at sun.misc.Unsafe.park(Native Method)
            - parking to wait for  <0x05954860> (a java.util.concurrent.locks.Abstra
    ctQueuedSynchronizer$ConditionObject)
            at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:198
            at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject
    .awaitNanos(AbstractQueuedSynchronizer.java:1963)
            at java.util.concurrent.LinkedBlockingQueue.poll(LinkedBlockingQueue.jav
    a:395)
            at elephant.insider.server.monitor.impl.AdapterMonitorImpl$Monitor.run(A
    dapterMonitorImpl.java:247)
            at java.lang.Thread.run(Thread.java:619)
    "TimerQueue" daemon prio=6 tid=0x2af42400 nid=0xf6c in Object.wait() [0x2e4bf000
    ..0x2e4bfb14]
       java.lang.Thread.State: TIMED_WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            at javax.swing.TimerQueue.run(TimerQueue.java:236)
            - locked <0x0541bcf0> (a javax.swing.TimerQueue)
            at java.lang.Thread.run(Thread.java:619)
    "AWT-EventQueue-0" prio=6 tid=0x2af20c00 nid=0x6d8 waiting for monitor entry [0x
    2e2bf000..0x2e2bfb94]
       java.lang.Thread.State: BLOCKED (on object monitor)
            at oracle.javatools.db.StatementWrapper$1.runImpl(StatementWrapper.java:
    220)
            - waiting to lock <0x07f27198> (a oracle.jdbc.driver.T4CConnection)
            at oracle.javatools.db.StatementWrapper$1.runImpl(StatementWrapper.java:
    212)
            at oracle.javatools.db.StatementWrapper$ExecutionRunnable.run(StatementW
    rapper.java:653)
            - locked <0x03034468> (a oracle.javatools.db.StatementWrapper$1)
            at oracle.javatools.db.StatementWrapper.doExecute(StatementWrapper.java:
    290)
            at oracle.javatools.db.StatementWrapper.execute(StatementWrapper.java:21
    1)
            at oracle.javatools.db.AbstractDatabase.isConnectionAlive(AbstractDataba
    se.java:209)
            at oracle.javatools.db.AbstractDatabase.getConnection(AbstractDatabase.j
    ava:187)
            at oracle.javatools.db.AbstractDatabase.getConnection(AbstractDatabase.j
    ava:175)
            at oracle.dbtools.raptor.utils.Connections.getDatabase(Connections.java:
    485)
            at oracle.dbtools.raptor.utils.Connections.getDatabase(Connections.java:
    513)
            at oracle.dbtools.db.DBUtil.addQuotes(DBUtil.java:1300)
            at oracle.dbtools.raptor.oviewer.table.DataEditor.open(DataEditor.java:3
    44)
            at oracle.ideimpl.editor.EditorState.openEditor(EditorState.java:244)
            at oracle.ideimpl.editor.EditorState.createEditor(EditorState.java:152)
            at oracle.ideimpl.editor.EditorState.getOrCreateEditor(EditorState.java:
    94)
            at oracle.ideimpl.editor.SplitPaneState.canSetEditorStatePos(SplitPaneSt
    ate.java:231)
            at oracle.ideimpl.editor.SplitPane.setCurrentEditorStatePos(SplitPane.ja
    va:1220)
            at oracle.ideimpl.editor.SplitPane$1.valueChanged(SplitPane.java:132)
            at oracle.ide.controls.customtab.CustomTab.fireSelectionChange(CustomTab
    .java:292)
            at oracle.ide.controls.customtab.CustomTab._setSelectedPage(CustomTab.ja
    va:604)
            at oracle.ide.controls.customtab.CustomTab.setSelectedPage(CustomTab.jav
    a:566)
            at oracle.ide.controls.customtab.CustomTab.selectPageAt(CustomTab.java:6
    19)
            at oracle.ide.controls.customtab.CustomTab.mousePressed(CustomTab.java:9
    69)
            at java.awt.AWTEventMulticaster.mousePressed(AWTEventMulticaster.java:26
    2)
            at java.awt.AWTEventMulticaster.mousePressed(AWTEventMulticaster.java:26
    2)
            at java.awt.Component.processMouseEvent(Component.java:6038)
            at javax.swing.JComponent.processMouseEvent(JComponent.java:3265)
            at java.awt.Component.processEvent(Component.java:5806)
            at java.awt.Container.processEvent(Container.java:2058)
            at java.awt.Component.dispatchEventImpl(Component.java:4413)
            at java.awt.Container.dispatchEventImpl(Container.java:2116)
            at java.awt.Component.dispatchEvent(Component.java:4243)
            at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322
            at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3983)
            at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
            at java.awt.Container.dispatchEventImpl(Container.java:2102)
            at java.awt.Window.dispatchEventImpl(Window.java:2440)
            at java.awt.Component.dispatchEvent(Component.java:4243)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
            at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThre
    ad.java:273)
            at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.
    java:183)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:173)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
            at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)
    "AWT-Windows" daemon prio=6 tid=0x2bb9d000 nid=0xa74 runnable [0x2e0af000..0x2e0
    afc94]
       java.lang.Thread.State: RUNNABLE
            at sun.awt.windows.WToolkit.eventLoop(Native Method)
            at sun.awt.windows.WToolkit.run(WToolkit.java:290)
            at java.lang.Thread.run(Thread.java:619)
    "AWT-Shutdown" prio=6 tid=0x2bbad800 nid=0xa70 in Object.wait() [0x2dfaf000..0x2
    dfafd14]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            at java.lang.Object.wait(Object.java:485)
            at sun.awt.AWTAutoShutdown.run(AWTAutoShutdown.java:259)
            - locked <0x053f0240> (a java.lang.Object)
            at java.lang.Thread.run(Thread.java:619)
    "Java2D Disposer" daemon prio=6 tid=0x2bb7c400 nid=0xa6c in Object.wait() [0x2de
    af000..0x2deafd94]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
            - locked <0x053f02d0> (a java.lang.ref.ReferenceQueue$Lock)
            at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
            at sun.java2d.Disposer.run(Disposer.java:125)
            at java.lang.Thread.run(Thread.java:619)
    "Low Memory Detector" daemon prio=6 tid=0x2af39400 nid=0xddc runnable [0x0000000
    0..0x00000000]
       java.lang.Thread.State: RUNNABLE
    "CompilerThread0" daemon prio=6 tid=0x2af2b400 nid=0xdd8 waiting on condition [0
    x00000000..0x2b59f7bc]
       java.lang.Thread.State: RUNNABLE
    "Attach Listener" daemon prio=6 tid=0x2af2a400 nid=0xdd4 runnable [0x00000000..0
    x00000000]
       java.lang.Thread.State: RUNNABLE
    "Signal Dispatcher" daemon prio=6 tid=0x2af29400 nid=0xdd0 waiting on condition
    [0x00000000..0x00000000]
       java.lang.Thread.State: RUNNABLE
    "Finalizer" daemon prio=8 tid=0x2af16800 nid=0xdbc in Object.wait() [0x2b29f000.
    .0x2b29fd14]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:116)
            - locked <0x05370298> (a java.lang.ref.ReferenceQueue$Lock)
            at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:132)
            at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
    "Reference Handler" daemon prio=6 tid=0x2af15c00 nid=0xdb8 in Object.wait() [0x2
    b19f000..0x2b19fc94]
       java.lang.Thread.State: WAITING (on object monitor)
            at java.lang.Object.wait(Native Method)
            at java.lang.Object.wait(Object.java:485)
            at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:116)
            - locked <0x05370320> (a java.lang.ref.Reference$Lock)
    "main" prio=6 tid=0x00986800 nid=0xd5c waiting on condition [0x00000000..0x0012f
    b3c]
       java.lang.Thread.State: RUNNABLE
    "VM Thread" prio=6 tid=0x2af12800 nid=0xdb4 runnable
    "VM Periodic Task Thread" prio=6 tid=0x2af54800 nid=0xde0 waiting on condition
    JNI global references: 4038
    Heap
    def new generation   total 4736K, used 1381K [0x02c10000, 0x03130000, 0x0537000
    0)
      eden space 4224K,  23% used [0x02c10000, 0x02d08a40, 0x03030000)
      from space 512K,  75% used [0x03030000, 0x03090b50, 0x030b0000)
      to   space 512K,   0% used [0x030b0000, 0x030b0000, 0x03130000)
    tenured generation   total 62144K, used 47234K [0x05370000, 0x09020000, 0x22c10
    000)
       the space 62144K,  76% used [0x05370000, 0x08190950, 0x08190a00, 0x09020000)
    compacting perm gen  total 45824K, used 45645K [0x22c10000, 0x258d0000, 0x2ac10
    000)
       the space 45824K,  99% used [0x22c10000, 0x258a36c0, 0x258a3800, 0x258d0000)
    No shared spaces configured.At the end, I had to kill sqldev. But on restarting, my connections couldn't get loaded.
    Upon further investigation, I found the connections.xml truncated! The last entry was part of the second last connection:
       <Reference name="DES - Auditoria" className="oracle.jdeveloper.db.adapter.DatabaseProvider" xmlns="">
          <Factory className="oracle.jdeveloper.db.adapter.DatabaseProviderFactory"/>
          <RefAddresses>
             <StringRefAddr addrType="OracleConnectionType">
                <Contents>BASIC</Contents>
             </StringRefAddr>
             <StringRefAddr addrType="oraDriverType">
                <Contents>thin</Contents>
             </StringRefAddr>
             <StringRefAddr addrType="sid">
                <Contents>DES</Contents>
             </StringRefAddr>
             <StringRefAddr addrType="port">
                <Contents>1521</Contents>
             </StringRefAddr>
             <StringRefAddr addrType="user">
                <Contents>Auditoria</Contents>
             </StringRefAddr>
             <StringRefAddr addrType="role">
                <Contents/>
             </StringRefAddr>
             <StringRefAddr addrType="NoPasswordConnection">
                <Contents>TRUE</Contents>
             </StringRefAddr>
             <StringRefAddr addrType="subtype">
                <Contents>oraJDBC</Contents>
             </StringRefAddr>
             <StringRefAddr addrType="ConnName">
                <Contents>DES - Auditoria</Contents>
             </StringRefAddr>
             <StringRefAddr addrType="RaptorConnectionType">
                <Contents>Oracle</Contents>
             </StringReTrying to import previously saved connections failed with another exception.
    Luckily copying the xml from the conserved previous version finally restored my connections.
    How could all this happen???
    Regards,
    K.

    I found the truncation of connections.xml to happen on just opening the unshared connection!
    This is all I get in the log on doing so:
    FINER     2940     188     oracle.javatools.db.DatabaseFactory     Opening connection for DES - General__1 took 172ms
    FINE     2941     0     oracle.javatools.db.AbstractDatabase     DES - General__1: new oracle.javatools.db.ora.Oracle10gR2
    FINER     2942     0     oracle.javatools.db.DBLog     DES - General__1:
    /** TESTING CONNECTION IS ALIVE */ SELECT 1 FROM DUAL
    Binds used:
    FINER     2943     0     oracle.javatools.db.StatementWrapper     Executing query, and processing results took 0ms
    FINER     2944     0     oracle.javatools.db.DBLog     DES - General__1:
    /** TESTING CONNECTION IS ALIVE */ SELECT 1 FROM DUAL
    Binds used:
    FINER     2945     0     oracle.javatools.db.StatementWrapper     Executing query, and processing results took 0ms
    FINER     2946     0     oracle.javatools.db.DBLog     DES - General__1:
    select /*OracleDatabaseImpl.ALL_NLS_PARAMS_QUERY*/
           s.parameter, s.value
    from  nls_session_parameters s
    union all
    select d.parameter, d.value
    from  nls_database_parameters d
    where not exists (select 1 from nls_session_parameters s2
                      where   s2.parameter = d.parameter)
    union all
    select 'NLS_CHARSET_ID' parameter, to_char(NLS_CHARSET_ID(charset.value)) value
    from (select value
          from nls_database_parameters
          where parameter = 'NLS_CHARACTERSET') charset
    Binds used: none
    FINER     2947     15     oracle.javatools.db.StatementWrapper     Executing query, and processing results took 15ms
    FINER     2948     0     oracle.javatools.db.DBLog     DES - General__1:
    /** TESTING CONNECTION IS ALIVE */ SELECT 1 FROM DUAL
    Binds used:
    FINER     2949     0     oracle.javatools.db.StatementWrapper     Executing query, and processing results took 0ms
    FINER     2950     0     oracle.javatools.db.DBLog     DES - General__1:
    /** TESTING CONNECTION IS ALIVE */ SELECT 1 FROM DUAL
    Binds used:
    FINER     2951     0     oracle.javatools.db.StatementWrapper     Executing query, and processing results took 0ms
    FINER     2952     0     oracle.javatools.db.DBLog     DES - General__1:
    /** TESTING CONNECTION IS ALIVE */ SELECT 1 FROM DUAL
    Binds used:
    FINER     2953     0     oracle.javatools.db.StatementWrapper     Executing query, and processing results took 0ms
    FINER     2954     0     oracle.javatools.db.DBLog     DES - General__1:
    SELECT /*BaseOracleDatabase.ALL_CURR_USER_QUERY*/
           USERNAME
    ,      DEFAULT_TABLESPACE
    ,      TEMPORARY_TABLESPACE
    FROM   SYS.USER_USERS
    Binds used: none
    FINER     2955     0     oracle.javatools.db.StatementWrapper     Executing query, and processing results took 0ms
    FINER     2956     0     oracle.javatools.db.DBLog     DES - General__1:
    /** TESTING CONNECTION IS ALIVE */ SELECT 1 FROM DUAL
    Binds used:
    FINER     2957     16     oracle.javatools.db.StatementWrapper     Executing query, and processing results took 16ms
    FINER     2958     0     oracle.javatools.db.DBLog     DES - General__1:
    /** TESTING CONNECTION IS ALIVE */ SELECT 1 FROM DUAL
    Binds used:
    FINER     2959     0     oracle.javatools.db.StatementWrapper     Executing query, and processing results took 0ms
    FINER     2960     0     oracle.javatools.db.DBLog     DES - General__1:
    SELECT /*OracleDatabaseImpl.ALL_ROLES_QUERY*/
           ROLE FROM SESSION_ROLES
    Binds used: none
    FINER     2961     0     oracle.javatools.db.StatementWrapper     Executing query, and processing results took 0ms
    FINE     2962     0     oracle.javatools.db.ora.OracleDatabaseImpl     Database DES - General__1 has the DBA role.
    FINER     2963     0     oracle.javatools.db.DBLog     DES - General__1:
    /** TESTING CONNECTION IS ALIVE */ SELECT 1 FROM DUAL
    Binds used:
    FINER     2964     0     oracle.javatools.db.StatementWrapper     Executing query, and processing results took 0ms
    FINER     2965     0     oracle.javatools.db.DBLog     DES - General__1:
    /** TESTING CONNECTION IS ALIVE */ SELECT 1 FROM DUAL
    Binds used:
    FINER     2966     0     oracle.javatools.db.StatementWrapper     Executing query, and processing results took 0ms
    FINER     2967     0     oracle.javatools.db.DBLog     DES - General__1:
    /** TESTING CONNECTION IS ALIVE */ SELECT 1 FROM DUAL
    Binds used:
    FINER     2968     0     oracle.javatools.db.StatementWrapper     Executing query, and processing results took 0ms
    FINER     2969     391     oracle.javatools.db.DBLog     DES - General__1:
    /** TESTING CONNECTION IS ALIVE */ SELECT 1 FROM DUAL
    Binds used:
    FINER     2970     0     oracle.javatools.db.StatementWrapper     Executing query, and processing results took 0ms
    FINER     2971     0     oracle.javatools.db.DBLog     DES - General__1:
    /** TESTING CONNECTION IS ALIVE */ SELECT 1 FROM DUAL
    Binds used:
    FINER     2972     0     oracle.javatools.db.StatementWrapper     Executing query, and processing results took 0ms
    FINER     2973     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2974     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2975     15     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2976     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2977     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2978     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2979     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2980     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2981     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2982     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2983     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2984     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2985     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2986     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2987     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2988     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2989     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2990     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2991     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2992     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2993     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2994     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2995     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2996     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2997     16     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2998     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     2999     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3000     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3001     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3002     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3003     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3004     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3005     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3006     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3007     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3008     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3009     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3010     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3011     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3012     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3013     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3014     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3015     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3016     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3017     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3018     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3019     15     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3020     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3021     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3022     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3023     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3024     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3025     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3026     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3027     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3028     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3029     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3030     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3031     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3032     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3033     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3034     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3035     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3036     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3037     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3038     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3039     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3040     16     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3041     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3042     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3043     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3044     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3045     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3046     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3047     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3048     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3049     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3050     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3051     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3052     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3053     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3054     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3055     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3056     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3057     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3058     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3059     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3060     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3061     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3062     16     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3063     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3064     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3065     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3066     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3067     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3068     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3069     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3070     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3071     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3072     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3073     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3074     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3075     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3076     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3077     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3078     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3079     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3080     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3081     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3082     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3083     15     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 15ms
    FINER     3084     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3085     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3086     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3087     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3088     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3089     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3090     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3091     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3092     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3093     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3094     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3095     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3096     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3097     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3098     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3099     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3100     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3101     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3102     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3103     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3104     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3105     16     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3106     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3107     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3108     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3109     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3110     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3111     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3112     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3113     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3114     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3115     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3116     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3117     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3118     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3119     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3120     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3121     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3122     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3123     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3124     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3125     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3126     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3127     15     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3128     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3129     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3130     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3131     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3132     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3133     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3134     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3135     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3136     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3137     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3138     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3139     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3140     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3141     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3142     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3143     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3144     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3145     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3146     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3147     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3148     16     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 16ms
    FINER     3149     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3150     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3151     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3152     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3153     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3154     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3155     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3156     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3157     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3158     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3159     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3160     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3161     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3162     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3163     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3164     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3165     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3166     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3167     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3168     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3169     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3170     16     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3171     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3172     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3173     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3174     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3175     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3176     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3177     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3178     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3179     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3180     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3181     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3182     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3183     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3184     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3185     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3186     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3187     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3188     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3189     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3190     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3191     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3192     15     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3193     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3194     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3195     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3196     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3197     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3198     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3199     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3200     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3201     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3202     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3203     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3204     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3205     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3206     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3207     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3208     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3209     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3210     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3211     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3212     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3213     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3214     16     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3215     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3216     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3217     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3218     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3219     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3220     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3221     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3222     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3223     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3224     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3225     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3226     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3227     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3228     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3229     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3230     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3231     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3232     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3233     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3234     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3235     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3236     16     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3237     0     oracle.javatools.db.DBLog     DES - General__1:
    /** TESTING CONNECTION IS ALIVE */ SELECT 1 FROM DUAL
    Binds used:
    FINER     3238     0     oracle.javatools.db.StatementWrapper     Executing query, and processing results took 0ms
    FINER     3239     0     oracle.javatools.db.DBLog     DES - General__1:
    /** TESTING CONNECTION IS ALIVE */ SELECT 1 FROM DUAL
    Binds used:
    FINER     3240     15     oracle.javatools.db.StatementWrapper     Executing query, and processing results took 15ms
    FINER     3241     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3242     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3243     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3244     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3245     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3246     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3247     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3248     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3249     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3250     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3251     16     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3252     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3253     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3254     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3255     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3256     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3257     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3258     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3259     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3260     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3261     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3262     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3263     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3264     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3265     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3266     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3267     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3268     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3269     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3270     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3271     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3272     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3273     15     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3274     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3275     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3276     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3277     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3278     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3279     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3280     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3281     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3282     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3283     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3284     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3285     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3286     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3287     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3288     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3289     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3290     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3291     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3292     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3293     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3294     16     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 16ms
    FINER     3295     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3296     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3297     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3298     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3299     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3300     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3301     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3302     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3303     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3304     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3305     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3306     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3307     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3308     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3309     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3310     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3311     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3312     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3313     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3314     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3315     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3316     16     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 16ms
    FINER     3317     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3318     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3319     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3320     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3321     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3322     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3323     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3324     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3325     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3326     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3327     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3328     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3329     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3330     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3331     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3332     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3333     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3334     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3335     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3336     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3337     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3338     15     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3339     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3340     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3341     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3342     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3343     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3344     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3345     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3346     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3347     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3348     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3349     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3350     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3351     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3352     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3353     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3354     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3355     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3356     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3357     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3358     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3359     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3360     16     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3361     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3362     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3363     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3364     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3365     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3366     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3367     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3368     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3369     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3370     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3371     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3372     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3373     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3374     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3375     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3376     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3377     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3378     15     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3379     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3380     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3381     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3382     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3383     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3384     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3385     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3386     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3387     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3388     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3389     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3390     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3391     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3392     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3393     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3394     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3395     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3396     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3397     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3398     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3399     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3400     16     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3401     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3402     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3403     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3404     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3405     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3406     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3407     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3408     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3409     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3410     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3411     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3412     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3413     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3414     0     oracle.jdeveloper.db.DatabaseConnections     ... lookup of Referenceable from CA took 0ms
    FINER     3415     0     oracle.jdeveloper.db.Data

  • How to get Arabic dates in SQL*Plus?

    I want to do a very simple thing.
    I want to type in Arabic and Display dates in Arabic.
    Instead i get ????? ??????? ????? ??????? ? ? ???????, ????? for this?
    Why is this?
    I then changed my Windows XP "Regional and Language Options" all to Arabic. Now, I get AR (Arabic) in my language selection bar at the bottom of the Desktop. When I choose AR I can type Arabic in Notepad. ُ
    Even HERE I can type in Arabic: فغحث غخعق ةثسسشلث اثقث
    But in Sql*PLus I get ????? ??????? ????? ??????? ? ? ???????, ?????
    If I choose AR in SQL Plus and type in Arabic I get garbage characters?
    How to get Arabic in Sql*Plus?
    SQL> SHOW USER
    USER is "ARABDTEST"
    SQL> SELECT * FROM v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    PL/SQL Release 11.1.0.6.0 - Production
    CORE    11.1.0.6.0      Production
    TNS for 32-bit Windows: Version 11.1.0.6.0 - Production
    NLSRTL Version 11.1.0.6.0 - Production
    SQL> SELECT * FROM nls_session_parameters;
    PARAMETER                      VALUE
    NLS_LANGUAGE                   AMERICAN
    NLS_TERRITORY                  AMERICA
    NLS_CURRENCY                   $
    NLS_ISO_CURRENCY               AMERICA
    NLS_NUMERIC_CHARACTERS         .,
    NLS_CALENDAR                   GREGORIAN
    NLS_DATE_FORMAT                DD-MON-RR
    NLS_DATE_LANGUAGE              AMERICAN
    NLS_SORT                       BINARY
    NLS_TIME_FORMAT                HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT           DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT             HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT        DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY              $
    NLS_COMP                       BINARY
    NLS_LENGTH_SEMANTICS           BYTE
    NLS_NCHAR_CONV_EXCP            FALSE
    17 rows selected.
    SQL> ALTER SESSION set NLS_DATE_LANGUAGE = 'ARABIC';
    Session altered.
    SQL> SELECT TO_CHAR(SYSDATE, 'RRRR/MM/DD YEAR MONTH DAY MON DY AM PM DL') FROM dual;
    TO_CHAR(SYSDATE,'RRRR/MM/DDYEARMONTHDAYMONDYAMPMDL')
    2013/04/08 TWENTY THIRTEEN ?????  ???????  ?????  ???????  ? ? ???????, ????? 08, 2013
    SQL> ALTER SESSION set NLS_DATE_LANGUAGE = 'AMERICAN';
    Session altered.
    SQL>  SELECT TO_CHAR(SYSDATE, 'RRRR/MM/DD YEAR MONTH DAY MON DY AM PM DL') FROM dual;
    TO_CHAR(SYSDATE,'RRRR/MM/DDYEARMONTHDAYMONDYAMPMDL')
    2013/04/08 TWENTY THIRTEEN APRIL     MONDAY    APR MON PM PM Monday, April 08, 2013
    SQL> SELECT * FROM nls_database_parameters;
    PARAMETER                      VALUE
    NLS_LANGUAGE                   AMERICAN
    NLS_TERRITORY                  AMERICA
    NLS_CURRENCY                   $
    NLS_ISO_CURRENCY               AMERICA
    NLS_NUMERIC_CHARACTERS         .,
    NLS_CHARACTERSET               WE8MSWIN1252
    NLS_CALENDAR                   GREGORIAN
    NLS_DATE_FORMAT                DD-MON-RR
    NLS_DATE_LANGUAGE              AMERICAN
    NLS_SORT                       BINARY
    NLS_TIME_FORMAT                HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT           DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT             HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT        DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY              $
    NLS_COMP                       BINARY
    NLS_LENGTH_SEMANTICS           BYTE
    NLS_NCHAR_CONV_EXCP            FALSE
    NLS_NCHAR_CHARACTERSET         AL16UTF16
    NLS_RDBMS_VERSION              11.1.0.6.0
    20 rows selected.

    I am not sure SQL*Plus in character mode can display Arabic characters on Windows. OTN NLS_LANG FAQ http://www.oracle.com/technetwork/products/globalization/nls-lang-099431.html#_Toc105389288 says:
    >
    if you are testing with "special" characters please DO use the GUI and not the "DOS box" sqlplus.exe !
    >
    SQL*Plus GUI is not available with 11G: you should use SQL Developer.

  • ORA-12714 when using inline view in PL/SQL

    Oracle 9.2.0.4 on Solaris8(SPARC 64).
    I have stripped and simplify the code:
    create type parent_type as object (parent_col number(10)) not instantiable not final;
    create type sub_type under parent_type (child_col nvarchar2(30));
    create table test (table_col parent_type);
    SQL statement works:
    SELECT a
    FROM
    (select treat(table_col as sub_type).child_col a
    from test)
    ...but the sam statement in PL/SQL returns:
    DECLARE temp_var NVARCHAR2(30);
    BEGIN
    SELECT a
    INTO temp_var
    FROM
    (select treat(table_col as sub_type).child_col a
    from test);
    end;
    ERROR at line 3:
    ORA-06550: line 3, column 8:
    PL/SQL: ORA-12714: invalid national character set specified
    ORA-06550: line 3, column 1:
    PL/SQL: SQL Statement ignored
    SQL> run
    1* select parameter,value from v$nls_parameters where parameter like '%CHARACTERSET%'
    PARAMETER VALUE
    NLS_CHARACTERSET EE8ISO8859P2
    NLS_NCHAR_CHARACTERSET AL16UTF16
    Where do I specify national character set ?
    NLS_LANG=SLOVENIAN_SLOVENIA.EE8ISO8859P2
    ORA_NLS33 is unset (it makes no diference if I set it manually).
    Can anyone reproduce error ?

    I get the error even on 10g. The value for NLS_LANG is:
    AMERICAN_AMERICA.WE8MSWIN1252
    SQL> create type parent_type as object (parent_col number(10)) not instantiable not final;
      2  /
    Type created.
    SQL> create type sub_type under parent_type (child_col nvarchar2(30));
      2  /
    Type created.
    SQL> create table test (table_col parent_type);
    Table created.
    SQL> SELECT a
      2  FROM
      3  (select treat(table_col as sub_type).child_col a
      4  from test)
      5  /
    no rows selected
    SQL> DECLARE temp_var NVARCHAR2(30);
      2  BEGIN
      3  SELECT a
      4  INTO temp_var
      5  FROM
      6  (select treat(table_col as sub_type).child_col a
      7  from test);
      8  end;
      9  /
    SELECT a
    ERROR at line 3:
    ORA-06550: line 3, column 8:
    PL/SQL: ORA-12714: invalid national character set specified
    ORA-06550: line 3, column 1:
    PL/SQL: SQL Statement ignored
    SQL> select * from nls_database_parameters
      2  where parameter like '%CHARACTERSET';
    PARAMETER                      VALUE
    NLS_CHARACTERSET               WE8ISO8859P15
    NLS_NCHAR_CHARACTERSET         AL16UTF16
    SQL> select * from v$version;
    BANNER
    Oracle9i Enterprise Edition Release 9.2.0.3.0 - 64bit Production
    PL/SQL Release 9.2.0.3.0 - Production
    CORE    9.2.0.3.0       Production
    TNS for Solaris: Version 9.2.0.3.0 - Production
    NLSRTL Version 9.2.0.3.0 - Production
    SQL> disconnect
    Disconnected from Oracle9i Enterprise Edition Release 9.2.0.3.0 - 64bit Production
    With the Partitioning option
    JServer Release 9.2.0.3.0 - Production
    SQL> create type parent_type as object (parent_col number(10)) not instantiable not final;
      2  /
    Type created.
    SQL> create type sub_type under parent_type (child_col nvarchar2(30));
      2  /
    Type created.
    SQL> create table test (table_col parent_type);
    Table created.
    SQL> SELECT a
      2  FROM
      3  (select treat(table_col as sub_type).child_col a
      4  from test)
      5  /
    no rows selected
    SQL> DECLARE temp_var NVARCHAR2(30);
      2  BEGIN
      3  SELECT a
      4  INTO temp_var
      5  FROM
      6  (select treat(table_col as sub_type).child_col a
      7  from test);
      8  end;
      9  /
    SELECT a
    ERROR at line 3:
    ORA-06550: line 3, column 8:
    PL/SQL: ORA-12714: invalid national character set specified
    ORA-06550: line 3, column 1:
    PL/SQL: SQL Statement ignored
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - 64bi
    PL/SQL Release 10.1.0.2.0 - Production
    CORE    10.1.0.2.0      Production
    TNS for Solaris: Version 10.1.0.2.0 - Production
    NLSRTL Version 10.1.0.2.0 - Production
    SQL> select * from nls_database_parameters
      2  where parameter like '%CHARACTERSET';
    PARAMETER                      VALUE
    NLS_CHARACTERSET               WE8ISO8859P15
    NLS_NCHAR_CHARACTERSET         AL16UTF16
    SQL> disconnect
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - 64bit Production
    With the Partitioning, Oracle Label Security, OLAP and Data Mining options
    SQL>

  • ORA-01843: not a valid month - Oracle 11gR2 vs Oracle 10gR2

    Hi,
    We have two database servers one running on 10g and another running on 11g. Application written in Java (We are using Top link to connect oracle).
    Insert query on timestamp works fine on database 10g where as same query fail on 11g and raise error ORA-01843.
    If query executed with sqlplus on database 11g it works fine. i
    INSERT INTO CAMP (CAMP_PK, TSTAMP_CREATED) VALUES (1, '2010-02-22 06:07:18.008')
    Below parameters set on DB:
    SQL> select * from nls_database_parameters;
    PARAMETER                      VALUE
    NLS_LANGUAGE                   AMERICAN
    NLS_TERRITORY                  AMERICA
    NLS_CURRENCY                   $
    NLS_ISO_CURRENCY               AMERICA
    NLS_NUMERIC_CHARACTERS         .,
    NLS_CHARACTERSET               WE8MSWIN1252
    NLS_CALENDAR                   GREGORIAN
    NLS_DATE_FORMAT                DD-MON-RR
    NLS_DATE_LANGUAGE              AMERICAN
    NLS_SORT                       BINARY
    NLS_TIME_FORMAT                HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT           DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT             HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT        DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY              $
    NLS_COMP                       BINARY
    NLS_LENGTH_SEMANTICS           BYTE
    NLS_NCHAR_CONV_EXCP            FALSE
    NLS_NCHAR_CHARACTERSET         AL16UTF16
    NLS_RDBMS_VERSION              11.2.0.1.0
    SQL > show parameter nls_
    nls_date_format                      string      YYYYMMDD HH24:MI:SS
    nls_timestamp_format                 string      YYYY-MM-DD HH24:MI:SS.FF3
    nls_timestamp_tz_format              string      YYYYMMDD HH24:MI:SS.FF3 TZD
    Got below session data from application, both are identical.
    "11g"
         NLS_LANGUAGE=> AMERICAN
         NLS_TERRITORY=> AMERICA
         NLS_CURRENCY=> $
         NLS_ISO_CURRENCY=> AMERICA
         NLS_NUMERIC_CHARACTERS=> .,
         NLS_CALENDAR=> GREGORIAN
         NLS_DATE_FORMAT=> DD-MON-RR
         NLS_DATE_LANGUAGE=> AMERICAN
         NLS_SORT=> BINARY
         NLS_TIME_FORMAT=> HH.MI.SSXFF AM
         NLS_TIMESTAMP_FORMAT=> DD-MON-RR HH.MI.SSXFF AM
         NLS_TIME_TZ_FORMAT=> HH.MI.SSXFF AM TZR
         NLS_TIMESTAMP_TZ_FORMAT=> DD-MON-RR HH.MI.SSXFF AM TZR
         NLS_DUAL_CURRENCY=> $
         NLS_COMP=> BINARY
         NLS_LENGTH_SEMANTICS=> BYTE
         NLS_NCHAR_CONV_EXCP=> FALSE
    "10g"
         NLS_LANGUAGE=> AMERICAN
         NLS_TERRITORY=> AMERICA
         NLS_CURRENCY=> $
         NLS_ISO_CURRENCY=> AMERICA
         NLS_NUMERIC_CHARACTERS=> .,
         NLS_CALENDAR=> GREGORIAN
         NLS_DATE_FORMAT=> DD-MON-RR
         NLS_DATE_LANGUAGE=> AMERICAN
         NLS_SORT=> BINARY
         NLS_TIME_FORMAT=> HH.MI.SSXFF AM
         NLS_TIMESTAMP_FORMAT=> DD-MON-RR HH.MI.SSXFF AM
         NLS_TIME_TZ_FORMAT=> HH.MI.SSXFF AM TZR
         NLS_TIMESTAMP_TZ_FORMAT=> DD-MON-RR HH.MI.SSXFF AM TZR
         NLS_DUAL_CURRENCY=> $
         NLS_COMP=> BINARY
         NLS_LENGTH_SEMANTICS=> BYTE
         NLS_NCHAR_CONV_EXCP=> FALSE
    Does DBTIMEZONE make any impact on nls ?
    "11g"
    SQL> SELECT DBTIMEZONE, SESSIONTIMEZONE, SYSDATE FROM DUAL;
    DBTIMEZONE      SESSIONTIMEZONE                SYSTIMESTAMP
    +00:00          -05:00                         20100222 05:07:25.343
    "10g"
    SQL> SELECT DBTIMEZONE, SESSIONTIMEZONE, SYSDATE FROM DUAL;
    DBTIMEZONE      SESSIONTIMEZONE                SYSTIMESTAMP
    -05:00          -05:00                         20100222 05:07:34.771I am agree we can resolve this issue with to_timestamp but i need to defend on why it was working on 10g and not on 11g.

    A timestamp in the form '2010-02-22 06:07:18.008' should have never been accepted with NLS_TIMESTAMP_TZ_FORMAT='DD-MON-RR HH.MI.SSXFF AM TZR'. So there are three possibilities:
    1) The NLS_TIMESTAMP_TZ_FORMAT session format (NLS_SESSION_PARAMETERS) in force during the INSERT is not really the one you listed.
    2) The column CAMP.TSTAMP_CREATED is of type VARCHAR2 and not TIMESTAMP in the 10g database.
    3) There is a bug in the JDBC driver you use with 10g that allows this strange conversion.
    4) The SQL issued in the 10g database is really:
    INSERT INTO CAMP (CAMP_PK, TSTAMP_CREATED) VALUES (1, TIMESTAMP '2010-02-22 06:07:18.008')-- Sergiusz

  • How to create Image from 8-bit grayscal pixel matrix

    Hi,
    I am trying to display image from fingerprintscanner.
    To communicate with the scanner I use JNI
    I've wrote java code which get the image from C++ as a byte[].
    To display image I use as sample code from forum tring to display the image.
    http://forum.java.sun.com/thread.jspa?forumID=20&threadID=628129
    import java.awt.*;
    import java.awt.color.*;
    import java.awt.image.*;
    import java.io.*;
    import java.util.*;
    import javax.imageio.*;
    import javax.swing.*;
    public class Example {
    public static void main(String[] args) throws IOException {
    final int H = 400;
    final int W = 600;
    byte[] pixels = createPixels(W*H);
    BufferedImage image = toImage(pixels, W, H);
    display(image);
    ImageIO.write(image, "jpeg", new File("static.jpeg"));
    public static void _main(String[] args) throws IOException {
    BufferedImage m = new BufferedImage(1, 1, BufferedImage.TYPE_BYTE_GRAY);
    WritableRaster r = m.getRaster();
    System.out.println(r.getClass());
    static byte[] createPixels(int size){
    byte[] pixels = new byte[size];
    Random r = new Random();
    r.nextBytes(pixels);
    return pixels;
    static BufferedImage toImage(byte[] pixels, int w, int h) {
    DataBuffer db = new DataBufferByte(pixels, w*h);
    WritableRaster raster = Raster.createInterleavedRaster(db,
    w, h, w, 1, new int[]{0}, null);
    ColorSpace cs = ColorSpace.getInstance(ColorSpace.CS_GRAY);
    ColorModel cm = new ComponentColorModel(cs, false, false,
    Transparency.OPAQUE, DataBuffer.TYPE_BYTE);
    return new BufferedImage(cm, raster, false, null);
    static void display(BufferedImage image) {
    final JFrame f = new JFrame("");
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.getContentPane().add(new JLabel(new ImageIcon(image)));
    f.pack();
    SwingUtilities.invokeLater(new Runnable(){
    public void run() {
    f.setLocationRelativeTo(null);
    f.setVisible(true);
    And I see only white pixels on black background.
    Here is description of C++ method:
    GetImage
    Syntax: unsigned char* GetImage(int handle)
    Description: This function grabs the image of a fingerprint from the UFIS scanner.
    Parameters: Handle of the scanner
    Return values: Pointer to 1D-array, which contains the 8-bit grayscale pixel matrix line by line.
    here is sample C++ code which works fine to show image in C++
    void Show(unsigned char * bitmap, int W, int H, CClientDC & ClientDC)
    int i, j;
    short color;
    for(i = 0; i < H; i++) {
         for(j = 0; j < W; j++) {
         color = (unsigned char)bitmap[j+i*W];
         ClientDC.SetPixel(j,i,RGB(color,color,color));
    Will appreciate your help .

    Hi Joel,
    The database nls parameters are:
    select * from nls_database_parameters;
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CURRENCY $
    NLS_ISO_CURRENCY AMERICA
    NLS_NUMERIC_CHARACTERS .,
    NLS_CHARACTERSET CL8MSWIN1251
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD-MON-RR
    NLS_DATE_LANGUAGE AMERICAN
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY $
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_RDBMS_VERSION 9.2.0.4.0
    Part of the email header:
    Content-Type: multipart/alternative; boundary="---=1T02D27M75MU981T02D27M75MU98"
    -----=1T02D27M75MU981T02D27M75MU98
    -----=1T02D27M75MU981T02D27M75MU98
    Content-Type: text/plain; charset=us-ascii
    -----=1T02D27M75MU981T02D27M75MU98
    Content-Type: text/html;
    -----=1T02D27M75MU981T02D27M75MU98--
    I think that something is wrong in the WWV_FLOW_MAIL package. In order to send 8-bit characters must be used UTL_SMTP.WRITE_ROW_DATA instead of the UTL_SMTP.WRITE_DATA.
    Regards,
    Roumen

  • How can I see the NLS_PARAMETERS of other sessions

    Reposting this here, didn't realize this forum existed.
    For debugging purposes, I would like to see the NLS_PARAMETERS of other active sessions. This is on Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit.
    Neither of these are what I am looking for:
    SQL> select * from v$nls_parameters;
    -- Will only show me the settings of my own session.
    SQL> select * from nls_database_parameters;
    -- Lists permanent NLS parameters of the databasePls advise.
    -Johan

    Indeed, this information is not easily available. NLS environment is kept in an UGA variable and other sessions to not have access to it. Skilled Oracle engineers would be able to get this information from an UGA dump but otherwise it is not retrievable.
    I do not even see a way to log ALTER SESSION through a trigger (as it is not a DDL).
    -- Sergiusz

  • Error in updating Chinese and Russian characters

    Hello Gurus,
    I am Working in oracle 10g R2/Solaris.
    I am try to update one of my customer table which has Chinese and Russian(basically non-english letters) etc.,
    I have prepare the update statement MS-Excel. it looks correct
    UPDATE WEBSCHEMA.DPS_USER SET
    FIRST_NAME=
    '李'
    LAST_NAME=
    '文斌'
    WHERE LOGIN =
    '[email protected]';
    But, When paste in toad/sql developer/sql*plus, it gave some unique boxes/questionmark in place of Chinese letters. Even, I tried pasting notepad and again copy paste from notepad also. I found same error
    UPDATE WEBSCHEMA.DPS_USER SET      FIRST_NAME=    ' some box here'       ,    LAST_NAME=  ' some box here'        WHERE LOGIN =    '[email protected]';
    My CHARACTERSET parameter values:-
    SELECT * FROM NLS_DATABASE_PARAMETERS WHERE PARAMETER LIKE '%CHARACTERSET';
    PARAMETER                      VALUE                                  
    NLS_NCHAR_CHARACTERSET         AL16UTF16                              
    NLS_CHARACTERSET               AL32UTF8                               
    2 rows selected.
    How to fix this issue?
    Thanks
    Raj

    sorry for double posting because i didnt got reply from first one so i thought that nobody have looked on that topic that's why i done this.

Maybe you are looking for

  • How to select value from list with multiple selections ?

    HI, i have a list with multiple selections where i show email address retrieved from database. what i want to do is to send the selected email address to the invoiceedit.jsp. please look at the following code which gives you the better idea. <td clas

  • Target paths in external SWF's?

    Hi, Im having problems with a flash based website that I am creating. It is essentially a gallery, using a shell file for all the navigation with external .swf's being loaded in for each image set to keep the overall file size low. I have it all work

  • Down loading photos.

    I generally use a 512MB SD card for photos. I routinely shot about 100 photos and then down load to iPhoto. I occasionally will save those photos on the SD card and the shot another 100 pics. When I down load the second batch of 100, iPhoto will ask

  • Outlook Calendar Appointments Missing - My Fix.

    I had the wonderful disappearing, but apparently still there outlook (my version 2007) appointment issue. When trying to add a recurring appointment to a slot that was filled with an invisible recurring appointment, I got an error message - "Interfac

  • Update 2015-003 1.0 does not install..

    Hello ; Well, I see that there is an update to Yosemite (2015-003 1.0) and therefore I click "reboot" and the update is stuck halfway, nothing happens even after a long long time, even overnight.. I have to turn off the mac and turn, tried many times