handling channelgroup incompatible names?

Hello

When writing script code, I saw the following behavior a little surprising in Diadem 11 dealing with ChannelGroups naming conventions. If you running the code following each of the three names with different ChannelGroup you will get twice the failed message.

Dim sName

sName = "OK!"

"sName ="Test"

"sName =" x / y "

in the contrary case (data. Root.ChannelGroups.Exists (sName)) then

data. Root.ChannelGroups.Add (sName)

end if

in the contrary case (data. Root.ChannelGroups.Exists (sName)) then

logfilewrite ("operation failed.")

end if

OK, the last two names of ChannelGroup are not really valid. But why the Diadem treats this different names depending on which method of the data.root object is called with the name as a parameter? Not really serious but I lost 30 minutes to discover that a name stored in a variable ChanneGroup contains invalid characters. And that's why several operations expects that the ChannelGroup exists already failed. Bug or feature?

Best regards

Martin Liese

Hi Martin,

Well, this is intentional, but I'd hardly call it a feature.  Tiara deliberately avoids using the character ' / ' in any group name or channel because of its "group/channel" referring to the syntax.  Actually, I did know that DIAdem repressed leading or the space characters in a channel or group name, but your code proves that this is also the case.  My personal recommendation is that you cling to the group instead of group name variable, but even if it's not ideal for you, you can always ask the actual name used for the new group and update your variable sName, like this:

Dim sName, group

sName = 'Test '.

sName = "x / y".

in the contrary case (data. Root.ChannelGroups.Exists (sName)) then

Set Group = data. Root.ChannelGroups.Add (sName)

sName = Group.Name

end if

Brad Turpin

Tiara Product Support Engineer

National Instruments

Tags: NI Software

Similar Questions

  • How can I get the printer without printer name handle?

    I want to block printing by hanging. so I hang startdoc.

    Unfortunately, if I block the specific printer, I should get the printer handle

    I know how to get the handle to the name of the printer printer. but I don't know the name of the printer
    I knew the name of the only hdc and document printer.

    I tried for 3 days. but I can't find about it :(

    If anyone knows, please answer...

    [Moved from the community centre of Participation]

    Your question is more technical that is usually asked/answered here.

    You're more likely to get help in the TechNet forums

    https://social.technet.Microsoft.com/forums/IE/en-us/home?Forum=ieitprocurrentver

    or

    MSDN https://social.msdn.microsoft.com/Forums/ie/en-US/home?category=iedevelopment

    Don

  • Can not find the handle!

    Hello

    I am updating an application and it works well in 5.0.But he can not just run under althougth 5.0, its icon appears in the home screen.

    All modules does not appear to be loaded compeletely.

    DEBUG:

    CodeStore.DependencyList.reset () - can not find the handle of the name update_1000-1

    CodeStore.DependencyList.reset () - can not find the handle of the name update_1000-1

    CodeStore.DependencyList.reset () - can not find the handle of the name update_1000-4

    Thanks in advance

    What version of BlackBerry Java SDK or BlackBerry JDE do you use? See the link below for information on compatibility.

    http://supportforums.BlackBerry.com/T5/Java-development/appropriate-version-of-the-BlackBerry-JDE-an...

  • Handler to process post is prevents the role assignment

    Guys,

    I have a process post event handler which runs on Trusted recon, is the issue that I am facing

    1 each time a new user is created the display name field becomes null (although I do not put any name to display in custom code, or I'm doing any first name, family name manipulation)

    which basically means that OOB event handler for the display name is not triggered. I checked it by removing the custom event handler, then full name starts the fill on Recon trust.

    FYI, the Custom event handler has a prescription = 1008

    2 event Handler is also bent the role assignment, which is a member of the rule.


    I tried to use the User Manager APIs in the events and also entityManager API, but the results are the same.


    Can help here.

    Thank you
    AK

    You must use the UserManager API to update the user if you are in the event of change of station. EntityManager does not trigger the spread through research.

    -Kevin

  • How to add additional event on sample in AS3 event handler

    We can add AS2 is additional event on the same event handler in the code below.

    on (deployment, dragOut) {}

    Statement 1

    }

    Now, I'm workin in AS3. So, how do I add additional event on the AS3 event handler

    Display name of the instance of the object is 'myBtn. "

    Here I have included only outside mouse only, now, I want to add the additional event handler

    myBtn.addEventListener (MouseEvent.MOUSE_OUT, myBtnEvent);

    myBtnEvent(event:MouseEvent):void

    {

    Statement 1

    }

    myBtn.addEventListener (MouseEvent.MOUSE_OUT, myBtnEvent);

    myBtn.addEventListener (MouseEvent.MOUSE_OVER, myBtnEvent);

    myBtn.addEventListener (MouseEvent.MOUSE_DOWN, myBtnEvent);

    etc...

    function myBtnEvent(event:MouseEvent):void

    {

    1 or more statements based on events

    }

  • Sort channels

    Hello

    I now have the names of channel group:

    Max Freq offset

    FREQ Drift

    FREQ drift rate

    Offset1 Max Freq

    FREQ Drift1

    FREQ naturel2 drift

    And when I use the script sort Channel:

    C:\Program FILES (X 86) \NATIONAL INSTRUMENTS\DIADEM 2014\Examples\documents\SortChannelGroups.vbs

    He is not sort her properly.

    But if I rename the names of test instead of the rate of drift in Freq DriftRate Freq then it works properly.

    Concerning

    René

    Hi René

    Sorting is correct, because it uses the code ASCII of a white (32) is smaller then the ASCII code of '1' (49). I fear that you will you rename (temporary?) groups. You can add a blank space in front of the number or replace white by another character.

    You can use this little feature to replace the temporary vacuum and add the call at the beginning and the end of the script:

    Void RenameGroups (sSearch, sReplace)
    Dim oChnGroup
    For each oChnGroup in Data.Root.ChannelGroups
    oChnGroup.Name = Replace (oChnGroup.Name, sSearch, sReplace)
    Next
    End Sub

    If Data.Root.ChannelGroups.Count > 0 then
    Dim oGroups
    Call RenameGroups ("§","" ")
    Set oGroups = Data.Root.ChannelGroups

    Dim saGroupName()
    ReDim saGroupName (oGroups.Count)

    Dim iLoop
    iLoop = 1 to oGroups.Count
    saGroupName (iLoop) = oGroups (iLoop). Name
    next

    call QuickSort (saGroupName)

    If oGroups.Count > 100 then call MsgBoxDisp ("Kanalgruppen werden farblich...", 1 ")

    iLoop = 1 to oGroups.Count
    Call Data .move (oGroups (saGroupName (iLoop)), oGroups, iLoop)
    next

    Call RenameGroups ("§","" ")
    call MsgBoxCancel
    end if

    I hope this helps!

    Winfried

  • How to create a shortcut to rightclick in vista

    Is it possible to create or change shortcuts in vista, example: can create us a shortcut 'new folder right click? as a "ctrl + c" to copy

    Not easily. You must write a small program (to handle collisions of names with the names of existing files).

    However, there are 1 million available utility programs.

    One of them is http://www.technixupdate.com/3-ways-to-create-new-folder-with-keyboard-shortcut-in-xp-vista-and-windows-7/

    Pressing Alt + F10 - W - F do it of course as F10 (or Alt + F) - W - F.

    For more information on the keyboard shortcuts, accelerators, shortcut keys, and the impact of the Ctrl Alt and shift on the mouse see my HTA.

    Shortcut keys and key Modifiers.hta to my Skydrive

    https://SkyDrive.live.com/redir?RESID=E2F0CE17A268A4FA! 121

  • WRT610N can be used to connect to the net via the canopy wireless

    Hi, I have a subscription fixed antenna wireless here in the middle of the rice fields and that connect you to the Internet through a Web Access Manager whenever I restart my computer. It looks like this:

    The antenna connects to a brick of power with an ethernet cable, the brick also has an outgoing port that goes to my PC (and, hopefully, to a WRT610N). How to configure the WRT610N if I can share the connection with my other devices?

    Thank you!

    Go to the router configuration page, click the Status Check if the router is able to acquire an IP address. If so, try to connect your computer to the router. You should be able to see the WAM page. I'm not sure how your ISP handles the user name and password on the WAM page. It might display the same WAM page on other computers which are connected to the router. We will try.

  • Pictures goes missing

    I just noticed now when to start a picture whose pictures message I register offline are not save someone. It appears that the image has been downloaded and saved but then I go into my album and he's not here.

    It occurred because when I someone sent a picture, it showed on my end that one I wanted to send, but they got something else, then I opened the picture for full screen and I saw what they saw and it wasn't the image I had sent them. Then I went into the Album and boom, it wasn't there... but in messenger, it was there for me to choose and send.

    In addition, there was another photo, I recorded and sent and what I've seen, they have seen, but then again, get into the album, it wasn't there. And it wasn't even in the history of the images... I don't know how that's possible?

    It's really me stressing out me because I don't know that miss me a lot more than what I just noticed today.

    Can anyone help?

    Thank you

    @Xenatrix

    It seems that this is how Android handles images with names of unknown files, or when you save directly from Google Images. To work around this problem, when you found the image on Google, type on the image, and then press the button "View larger image" at the top right. This will take you to a direct link to the image, and when you save it as usual, it will use the file name on the Web site. I just tested it, and it should work for you.

  • Error on the Apex 5.0.1 installation process. Oracle 11.2.0.1.0 Linux 64-bit

    Hello! I install Apex 5.0.1 on my Oracle DB 11.2.0.1.0 64-bit Linux OS, following the: Application Express installation and configure Embedded PL/SQL Gateway but there is a problem when I try to run the @apex_epg_config.sql. I would be grateful if someone can help me

    SQL> @apex_epg_config.sql /home/oracle
    
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    
    . Loading images directory: /home/oracle/apex/images
    Directory created.
    
    declare
    *
    ERROR at line 1:
    ORA-29903: error in executing ODCIIndexFetch() routine
    ORA-31001: Invalid resource handle or path name ""
    ORA-06512: at line 39
    
    begin
    *
    ERROR at line 1:
    ORA-29903: error in executing ODCIIndexFetch() routine
    ORA-31001: Invalid resource handle or path name ""
    ORA-06512: at line 2
    
    declare
    *
    ERROR at line 1:
    ORA-29903: error in executing ODCIIndexFetch() routine
    ORA-31001: Invalid resource handle or path name ""
    ORA-06512: at line 6
    ORA-06512: at line 57
    
    Commit complete.
    
    Directory dropped.
    
    timing for: Load Images
    Elapsed: 00:00:00.13
    PL/SQL procedure successfully completed.
    Commit complete.
    
    SQL> 
    

    Hello!

    The s/n of my company's it. There was an error on the configuration of the ACL. He made the resettlement of the installation of all the ACLs and Apex worked right.

    Thak you all!

  • DBMS_DATAPUMP.metadata_remap - a matter of REMAP_TABLE.

    I want to export SCOTT. DEPT table and imports than HR. DEPT_HR with constraint. I'm using DBMS_METADATA. METADATA_REMAP with REMAP_SCHEMA (to change the schema anme) and REMAP_TABLE (to change the name of the table). I don't know where I am getting the error. It seems that REMAP_SCHEMA is changing all the names of schema successfully, but REMAP_TABLE does not change the name of the table on the constraint. So constraint is not be created. Is there another workaround solution? Here is a small proof of concept:

    SQL> --My database version.
    SQL> ----------------------
    SQL> SELECT * FROM v$version;
    
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0      Production
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    
    SQL> SET SERVEROUT ON
    SQL> ed
    Wrote file afiedt.buf
    
      1  DECLARE
      2  l_data_pump_handle    NUMBER;
      3  l_logfilename    VARCHAR2(30) := 'DWABI_'||to_char(sysdate, 'DDMMRRRRhh24miss') || '.log';
      4  l_expfilename    VARCHAR2(30) := 'DWABI_'||to_char(sysdate, 'DDMMRRRRhh24miss') || '.dmp';
      5  BEGIN
      6  l_data_pump_handle:= DBMS_DATAPUMP.OPEN(operation   => 'EXPORT',
      7                        job_mode    => 'TABLE',
      8                        remote_link => NULL,
      9                        job_name    => 'TEST_REMAP_DP',
    10                        version     => 'LATEST');
    11   DBMS_DATAPUMP.ADD_FILE(handle    => l_data_pump_handle,
    12                     filename    => l_expfilename,
    13                     directory => 'SAUBHIK',
    14                     filetype    => DBMS_DATAPUMP.KU$_FILE_TYPE_DUMP_FILE);
    15  DBMS_DATAPUMP.ADD_FILE(handle    => l_data_pump_handle,
    16                     filename    => l_logfilename,
    17                     directory => 'SAUBHIK',
    18                     filetype    => DBMS_DATAPUMP.KU$_FILE_TYPE_LOG_FILE);
    19   DBMS_DATAPUMP.metadata_filter(handle => l_data_pump_handle,
    20                        name   => 'SCHEMA_EXPR',
    21                        value  =>'= '||''''||'SCOTT'||'''');
    22   DBMS_DATAPUMP.metadata_filter(handle => l_data_pump_handle,
    23                        name   => 'NAME_EXPR',
    24                        value  =>'= '||''''||'DEPT'||'''');
    25  --We don't need index
    26    DBMS_DATAPUMP.metadata_filter(handle => l_data_pump_handle,
    27                        name   => 'EXCLUDE_PATH_EXPR',
    28                        value  =>'=''INDEX''');
    29  -- We don't copy table statistics!!
    30    DBMS_DATAPUMP.metadata_filter(handle => l_data_pump_handle,
    31                        name   => 'EXCLUDE_PATH_EXPR',
    32                        value  =>'=''STATISTICS''');
    33   -- We don't copy index statistics either!!
    34    DBMS_DATAPUMP.metadata_filter(handle => l_data_pump_handle,
    35                        name   => 'EXCLUDE_PATH_EXPR',
    36                        value  =>'=''INDEX_STATISTICS''');
    37    -- We do not need the data!!
    38    DBMS_DATAPUMP.DATA_FILTER(
    39     handle => l_data_pump_handle,
    40     name => 'INCLUDE_ROWS',
    41     value =>0
    42     );
    43  -- Start the export now.
    44       DBMS_DATAPUMP.start_job(l_data_pump_handle);
    45       dbms_output.put_line('Export started....');
    46   -- Detach, it's finish!
    47      DBMS_DATAPUMP.detach(l_data_pump_handle);
    48      dbms_output.put_line('Export ended....');
    49  EXCEPTION
    50       WHEN OTHERS THEN
    51        dbms_datapump.stop_job(l_data_pump_handle);
    52        RAISE;
    53*  END;
    54  /
    Export started....
    Export ended....
    
    PL/SQL procedure successfully completed.
    
    SQL> SELECT * FROM user_datapump_jobs;
    
    no rows selected
    
    
    
    

    Now, I'm importing that:

    SQL> ed
    Wrote file afiedt.buf
    
      1  --DWABI_28052015143133.dmp
      2  DECLARE
      3  l_data_pump_imp_handle NUMBER;
      4  l_logfilename  VARCHAR2(30) := 'DWABI_'||to_char(sysdate, 'DDMMRRRRhh24miss') || '.log';
      5  ind       NUMBER;        -- loop index
      6   pct_done  NUMBER;        -- percentage complete
      7   job_state VARCHAR2(30);  -- track job state
      8   le        ku$_LogEntry;  -- WIP and error messages
      9   js        ku$_JobStatus; -- job status from get_status
    10   jd        ku$_JobDesc;   -- job description from get_status
    11   sts       ku$_Status;    -- status object returned by get_status
    12  BEGIN
    13  l_data_pump_imp_handle:= DBMS_DATAPUMP.OPEN(operation   => 'IMPORT',
    14                        job_mode    => 'FULL',
    15                        remote_link => NULL,
    16                        job_name    => 'TEST',
    17                        version     => 'LATEST');
    18   DBMS_DATAPUMP.ADD_FILE(handle    => l_data_pump_imp_handle,
    19                     filename    => 'DWABI_28052015143133.dmp',
    20                     directory => 'SAUBHIK',
    21                     filetype    => DBMS_DATAPUMP.KU$_FILE_TYPE_DUMP_FILE);
    22  DBMS_DATAPUMP.ADD_FILE(handle    => l_data_pump_imp_handle,
    23                     filename    => l_logfilename,
    24                     directory => 'SAUBHIK',
    25                     filetype    => DBMS_DATAPUMP.KU$_FILE_TYPE_LOG_FILE);
    26   --If table is already there then do not import.
    27   dbms_datapump.set_parameter(handle => l_data_pump_imp_handle,
    28                              name => 'TABLE_EXISTS_ACTION',
    29                              value =>'SKIP');
    30    -- We need to remap the schema!!.
    31    dbms_output.put_line('Changing Schema...');
    32    DBMS_DATAPUMP.METADATA_REMAP (
    33     handle => l_data_pump_imp_handle,
    34     name => 'REMAP_SCHEMA',
    35     old_value => 'SCOTT',
    36     value=>'HR'
    37     );
    38    -- We need to remap the table!!. This is not working properly.
    39    dbms_output.put_line('Changing Table...');
    40    DBMS_DATAPUMP.METADATA_REMAP (
    41     handle => l_data_pump_imp_handle,
    42     name => 'REMAP_TABLE',
    43     old_value => 'DEPT',
    44     value=>'DEPT_HR',
    45     object_type => NULL
    46     );
    47   -- Start the import now.
    48       DBMS_DATAPUMP.start_job(l_data_pump_imp_handle);
    49    -- monitor job
    50    pct_done := 0;
    51    job_state := 'UNDEFINED';
    52    WHILE (job_state != 'COMPLETED') AND (job_state != 'STOPPED') LOOP
    53      dbms_datapump.get_status(l_data_pump_imp_handle, dbms_datapump.ku$_status_job_error +
    54      dbms_datapump.ku$_status_job_status +
    55      dbms_datapump.ku$_status_wip, -1, job_state, sts);
    56      js := sts.job_status;
    57      -- If the percentage done changed, display the new value
    58      IF js.percent_done != pct_done THEN
    59        dbms_output.put_line('*** Job percent done = ' ||
    60        to_char(js.percent_done));
    61        pct_done := js.percent_done;
    62      END IF;
    63      -- If any work-in-progress (WIP) or error messages
    64      -- were received for the job, display them.
    65      IF (BITAND(sts.mask,dbms_datapump.ku$_status_wip) != 0) THEN
    66        le := sts.wip;
    67      ELSE
    68        IF (BITAND(sts.mask,dbms_datapump.ku$_status_job_error) != 0) THEN
    69          le := sts.error;
    70        ELSE
    71          le := NULL;
    72        END IF;
    73      END IF;
    74      IF le IS NOT NULL THEN
    75        ind := le.FIRST;
    76        WHILE ind IS NOT NULL LOOP
    77          dbms_output.put_line(le(ind).LogText);
    78          ind := le.NEXT(ind);
    79        END LOOP;
    80      END IF;
    81      --DBMS_LOCK.sleep (10);
    82    END LOOP;
    83    -- Indicate that the job finished and detach from it.
    84    dbms_output.put_line('Job has completed');
    85   -- Detach, it's finish!
    86       DBMS_DATAPUMP.detach(l_data_pump_imp_handle);
    87  EXCEPTION
    88       WHEN OTHERS THEN
    89        dbms_datapump.stop_job(l_data_pump_imp_handle);
    90        RAISE;
    91* END;
    SQL> /
    Changing Schema...
    Changing Table...
    Master table "SYS"."TEST" successfully loaded/unloaded
    Starting "SYS"."TEST":
    Processing object type TABLE_EXPORT/TABLE/TABLE
    Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
    ORA-39083: Object type CONSTRAINT failed to create with error:
    ORA-00942: table
    or view does not exist
    Failing sql is:
    ALTER TABLE "HR"."DEPT" ADD CONSTRAINT
    "PK_DEPT" PRIMARY KEY ("DEPTNO") USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE
    DEFAULT CELL_FLASH_CACHE DEFAULT) TABLESPACE "USERS"  ENABLE
    
    Job "SYS"."TEST" completed with 1 error(s) at 15:04:02
    Job has completed
    
    PL/SQL procedure successfully completed.
    
    SQL>
    
    
    
    

    If you look at the failing sql code, it is clear that the name of the table in the constraint definition has not changed, but the DEPT_HR table is created in the HR schema without constraint. What's not here?

    Post edited by: Massimiliano edited the subject line, because he said as DBMS_METADATA. Changed to DBMS_DATAPUMP.

    Hello

    This is a bug in 11.2.0.1 I think - please this Ref

    Oracle Support Document 1609238.1 (REMAP_TABLE on IMPDP FAILS WITH ORA-942) can be found at: https://support.oracle.com/epmos/faces/DocumentDisplay?id=1609238.1

    See you soon,.

    Rich

  • LR 5.7 - managers brushes

    Does anyone know how to handle correctly the name of your brushes? I tried to rename in the Local adjustment presets folder (works very well for Developing the Presets), but it does not work for brushes. In addition, when I find out the brushes in LR, some are appointed completely differently, they appear in the folder. The default brushes do not appear in the file at all, so I guess they are hardcoded somewhere else.

    Thanks for the update.

    This is the expected behavior. Adjustment brush presets can only be renamed via the option of renaming in the adjustment brush Panel itself.

    They would not reflect name changes according to the change of name in the presets folder.

  • Generic Unix 11.1.1.7.0 - blank log file connector

    Hello

    We installed the generic Unix 11.1.1.7.0 for IOM 11.1.1.5.4 connector. The connector works well, but there is no log occurs in the log file. After doing configurations as described in the document to the activation of logging, the log file is generated, but there is no paper inside message. Even if you try with details of incorrect connection to the target. Exceptions are seen in the server logs, but not in the Connector log file.

    Here are the contents of my logging.xml file

    <? XML version = "1.0" encoding = "UTF-8"? >
    < logging_configuration >
    < log_handlers >

    < name log_handler = "console-handler" class = 'oracle.core.ojdl.logging.ConsoleHandler' format ='oracle.core.ojdl.weblogic.ConsoleFo
    jonhino ' level = "WARNING: 32" / >

    < name log_handler = "odl-handler" class = 'oracle.core.ojdl.logging.ODLHandlerFactory' filter ='oracle.dfw.incident.IncidentDetectionLo
    gFilter ">"
    < property name = "path" value='${domain.home}/servers/${weblogic. Name} /logs/$ {weblogic. Name} - diagnostic.log "/ >"
    < property name = value 'maxFileSize' = ' 10485760 "/ >"
    < property name = "maxLogSize" value = "104857600" / >
    < property name = value "encoding" = "UTF - 8" / > ".
    < property name = "useThreadName" value = "true" / >
    < property name = "supplementalAttributes" value ='J2EE_APP.name, J2EE_MODULE.name, WEBSERVICE.name, WEBSERVICE_PORT.name, composite_inst
    ance_id, component_instance_id, composite_name, name of the component "/ >"
    < / log_handler >

    < name log_handler = 'wls-domain' class = 'oracle.core.ojdl.weblogic.DomainLogHandler' level = "WARNING" / >

    < name log_handler = "message-GOSA-handler" class = "oracle.core.ojdl.logging.ODLHandlerFactory" > "
    < property name = "path" value='${domain.home}/servers/${weblogic. Name} / logs/GOSA/msglogging "/ >"
    < property name = value 'maxFileSize' = ' 10485760 "/ >"
    < property name = "maxLogSize" value = "104857600" / >
    < property name = value "encoding" = "UTF - 8" / > ".
    < property name = "supplementalAttributes" value='J2EE_APP.name,J2EE_MODULE.name,WEBSERVICE.name,WEBSERVICE_PORT.name'/ >
    < / log_handler >

    < name log_handler = em-journal-Manager ' level = ' NOTIFICATION: 32 ' class = 'oracle.core.ojdl.logging.ODLHandlerFactory' filter ='oracle.dfw.i
    preloaded. IncidentDetectionLogFilter ">"
    < property name = "path" value='${domain.home}/servers/${weblogic. Name}/SYSMAN/log/eMoms.log'/ >
    < property name = value 'format' = "ODL-Text" / >
    < property name = "useThreadName" value = "true" / >
    < property name = value 'maxFileSize' = ' 5242880 "/ >"
    < property name = value 'maxLogSize"=" 52428800 "/ >"
    < property name = value "encoding" = "UTF - 8" / > ".
    < / log_handler >

    < name log_handler = em-trc-Manager ' level = "TRACE: 32" class = "oracle.core.ojdl.logging.ODLHandlerFactory" > "
    < property name ='logreader: "value ="off"/ >"
    < property name = "path" value='${domain.home}/servers/${weblogic. Name}/SYSMAN/log/eMoms.trc'/ >
    < property name = value 'format' = "ODL-Text" / >
    < property name = "useThreadName" value = "true" / >
    < property name = "local" value = "fr" / >
    < property name = value 'maxFileSize' = ' 5242880 "/ >"
    < property name = value 'maxLogSize"=" 52428800 "/ >"
    < property name = value "encoding" = "UTF - 8" / > ".
    < / log_handler >

    < name log_handler = "unix-handler" level = "NOTIFICATION: 1" class = "oracle.core.ojdl.logging.ODLHandlerFactory" > "
    < property name ='logreader: "value ="off"/ >"
    < property name = "path" value='${domain.home}/servers/${weblogic. Name}/logs/unixConnector.log'/ >
    < property name = value 'format' = "ODL-Text" / >
    < property name = "useThreadName" value = "true" / >
    < property name = "local" value = "fr" / >
    < property name = value 'maxFileSize' = ' 5242880 "/ >"
    < property name = value 'maxLogSize"=" 52428800 "/ >"
    < property name = value "encoding" = "UTF - 8" / > ".
    < / log_handler >

    < / log_handlers >

    <>recorders

    < name of creator = "" level = "WARNING: 1" > "
    < manager name = 'Manager of odl' / >
    < manager name = 'wls-domain' / >
    < manager name = "console-handler" / >
    < / recorder >

    < name = 'org.identityconnectors.genericunix logger' level = ' NOTIFICATION: 1 "useParentHandlers ="false">
    < manager name = "unix-handler" / >
    < manager name = "console-handler" / >
    < / recorder >

    < name = "oracle.iam.connectors.icfcommon logger" level = "NOTIFICATION: 1" useParentHandlers = "false" > "
    < manager name = "unix-handler" / >
    < / recorder >

    < creator name = 'oracle' level = ' NOTIFICATION: 1 "/ >

    < name = "oracle.adf" / recorder >
    < name="oracle.adf.desktopintegration"/ recorder >
    < name="oracle.adf.faces"/ recorder >
    < name="oracle.adf.controller"/ recorder >
    < name = "oracle.adfinternal" / recorder >
    < name="oracle.adfinternal.controller"/ recorder >
    < name = "oracle.jbo" / recorder >
    < name = "oracle.adfdt" / recorder >
    < name = "oracle.adfdtinternal" / recorder >

    < name = "oracle.bam" / recorder >
    < name="oracle.bam.adapter"/ recorder >
    < name="oracle.bam.common"/ recorder >
    < name="oracle.bam.system"/ recorder >
    < name="oracle.bam.middleware"/ recorder >
    < name="oracle.bam.adc.security"/ recorder >
    < name="oracle.bam.common.security"/ recorder >
    < name="oracle.bam.adc.ejb.BamAdcServerBean"/ recorder >
    < name="oracle.bam.reportcache.ejb.ReportCacheServerBean"/ recorder >
    < name="oracle.bam.eventengine.ejb.EventEngineServerBean"/ recorder >
    < name="oracle.bam.ems.ejb.EMSServerBean"/ recorder >
    < name="oracle.bam.adc.api"/ recorder >
    < name="oracle.bam.adc"/ recorder >
    < name="oracle.bam.eventengine"/ recorder >
    < name="oracle.bam.ems"/ recorder >
    < name="oracle.bam.webservices"/ recorder >
    < name="oracle.bam.web"/ recorder >
    < name="oracle.bam.reportcache"/ recorder >

    < name = "oracle.bpm" / recorder >
    < name="oracle.bpm.analytics"/ recorder >
    < name = "oracle.integration" / recorder >
    < name="oracle.integration.platform.blocks.cluster"/ recorder >
    < name="oracle.integration.platform.blocks.deploy.coordinator"/ recorder >
    < name="oracle.integration.platform.blocks.event.saq"/ recorder >
    < name="oracle.integration.platform.blocks.java"/ recorder >
    < name="oracle.integration.platform.faultpolicy"/ recorder >
    < name="oracle.integration.platform.testfwk"/ recorder >
    < name = "oracle.soa" / recorder >
    < name="oracle.soa.adapter"/ recorder >
    < name="oracle.soa.b2b"/ recorder >
    < name="oracle.soa.b2b.apptransport"/ recorder >
    < name="oracle.soa.b2b.engine"/ recorder >
    < name="oracle.soa.b2b.repository"/ recorder >
    < name="oracle.soa.b2b.transport"/ recorder >
    < name="oracle.soa.b2b.ui"/ recorder >
    < name="oracle.soa.bpel"/ recorder >
    < name="oracle.soa.bpel.console"/ recorder >
    < name="oracle.soa.bpel.engine"/ recorder >
    < name="oracle.soa.bpel.engine.activation"/ recorder >
    < name="oracle.soa.bpel.engine.agents"/ recorder >
    < name="oracle.soa.bpel.engine.bpel"/ recorder >
    < name="oracle.soa.bpel.engine.compiler"/ recorder >
    < name="oracle.soa.bpel.engine.data"/ recorder >
    < name="oracle.soa.bpel.engine.delivery"/ recorder >
    < name="oracle.soa.bpel.engine.deployment"/ recorder >
    < name="oracle.soa.bpel.engine.dispatch"/ recorder >
    < name="oracle.soa.bpel.engine.sensor"/ recorder >
    < name="oracle.soa.bpel.engine.translation"/ recorder >
    < name="oracle.soa.bpel.engine.ws"/ recorder >
    < name="oracle.soa.bpel.engine.xml"/ recorder >
    < name="oracle.soa.bpel.entity"/ recorder >
    < name="oracle.soa.bpel.jpa"/ recorder >
    < name="oracle.soa.bpel.system"/ recorder >
    < name="oracle.soa.dvm"/ recorder >
    < name="oracle.soa.management.facade.api"/ recorder >
    < name="oracle.soa.mediator"/ recorder >
    < name="oracle.soa.mediator.common"/ recorder >
    < name="oracle.soa.mediator.common.cache"/ recorder >
    < name="oracle.soa.mediator.common.error"/ recorder >
    < name="oracle.soa.mediator.common.error.recovery"/ recorder >
    < name="oracle.soa.mediator.common.message"/ recorder >
    < name="oracle.soa.mediator.dispatch"/ recorder >
    < name="oracle.soa.mediator.dispatch.resequencer.toplink"/ recorder >
    < name="oracle.soa.mediator.filter"/ recorder >
    < name="oracle.soa.mediator.instance"/ recorder >
    < name="oracle.soa.mediator.management"/ recorder >
    < name="oracle.soa.mediator.metadata"/ recorder >
    < name="oracle.soa.mediator.monitor"/ recorder >
    < name="oracle.soa.mediator.resequencer"/ recorder >
    < name="oracle.soa.mediator.resequencer.besteffort"/ recorder >
    < name="oracle.soa.mediator.resequencer.fifo"/ recorder >
    < name="oracle.soa.mediator.resequencer.standard"/ recorder >
    < name="oracle.soa.mediator.service"/ recorder >
    < name="oracle.soa.mediator.serviceEngine"/ recorder >
    < name="oracle.soa.mediator.transformation"/ recorder >
    < name="oracle.soa.mediator.utils"/ recorder >
    < name="oracle.soa.mediator.validation"/ recorder >
    < name="oracle.soa.scheduler"/ recorder >
    < name="oracle.soa.services.common"/ recorder >
    < name="oracle.soa.services.identity"/ recorder >
    < name="oracle.soa.services.notification"/ recorder >
    < name="oracle.soa.services.rules"/ recorder >
    < name="oracle.soa.services.rules.obrtrace"/ recorder >
    < name="oracle.soa.services.workflow"/ recorder >
    < name="oracle.soa.services.workflow.common"/ recorder >
    < name="oracle.soa.services.workflow.evidence"/ recorder >
    < name="oracle.soa.services.workflow.metadata"/ recorder >
    < name="oracle.soa.services.workflow.persistency"/ recorder >
    < name="oracle.soa.services.workflow.query"/ recorder >
    < name="oracle.soa.services.workflow.report"/ recorder >
    < name="oracle.soa.services.workflow.runtimeconfig"/ recorder >
    < name="oracle.soa.services.workflow.soa"/ recorder >
    < name="oracle.soa.services.workflow.task"/ recorder >
    < name="oracle.soa.services.workflow.task.dispatch"/ recorder >
    < name="oracle.soa.services.workflow.task.routing"/ recorder >
    < name="oracle.soa.services.workflow.user"/ recorder >
    < name="oracle.soa.services.workflow.verification"/ recorder >
    < name="oracle.soa.services.workflow.worklist"/ recorder >
    < name="oracle.soa.services.workflow.performance"/ recorder >
    < name="oracle.soa.services.cmds"/ recorder >
    < name="oracle.soa.wsif"/ recorder >
    < name="oracle.soa.xref"/ recorder >

    < name = "oracle.ucs" / recorder >
    < name = "oracle.sdp" / recorder >
    < name = "oracle.sdpinternal" / recorder >
    < name="oracle.sdp.messaging"/ recorder >
    < name="oracle.sdp.messaging.client"/ recorder >
    < name="oracle.sdp.messaging.driver"/ recorder >
    < name="oracle.sdp.messaging.engine"/ recorder >
    < name="oracle.sdp.messaging.parlayx"/ recorder >
    < name="oracle.sdp.messaging.server"/ recorder >

    < name = "oracle.wsm" / recorder >

    < name = "oracle.wsm.msg.logging logger" level = "NOTIFICATION: 1" useParentHandlers = "false" > "
    < manager name = "GOSA-message Manager" / >
    < manager name = 'wls-domain' / >
    < / recorder >

    < name = 'oracle.sysman logger' level = ' NOTIFICATION: 32 "useParentHandlers ="false">
    < manager name = em-journal-Manager "/ >"
    < manager name = em-trc-Manager "/ >"
    < / recorder >

    < / recorders >
    < / logging_configuration >

    Let me know if I missed any configuration.

    Concerning

    Cédric Michel

    This has been resolved. Use the Patch 14271576.

  • Show a popup inside a popup programmatically

    Hi team.

    I use JDeveloper 11.1.2.4.

    So, I'm going to show a popup within a popup.  The secondary popup is a Yes without dialog that requires the user to confirm what they are doing.  However, in doing so, an empty dialog appears.  To configure this, we put just a few buttons on the popup.  There's an actionListenter calling the bean support to launch the shortcut menu.  The popup is in popup of the Act, but it appears empty and is wide 11px.  Now, I thought that maybe the popup is just being found.  So, I put another button on the page and had him use a showPopupBehavior.  It works fine as long as you do not click the button for the action listener.  Once you click the button for the action listener, you get the same empty behavior with the showPopupBehaviour.

    Here's what I have for my popup page.  This is the popup page that is called by a page via a taskflow parent.

      <af:document id="d1" title="#{pageFlowScope.popupTitle}: #{patientHeader.patientDisplayContext}" styleClass="PromisMasterPopUp">
        <f:facet name="metaContainer">
          <trh:script source="/jheadstart/jhs11.js" id="script0"></trh:script>
        </f:facet>
        <af:form id="dataForm">
          <af:panelStretchLayout id="psl" dimensionsFrom="children">
            <f:facet name="center">
              <af:panelGroupLayout layout="vertical" id="pgv">
              <af:region value="#{bindings.popupRegion.regionModel}" id="r1" styleClass="ModalitySelectionPopup"/>
              <af:panelGroupLayout halign="right" id="pg1" layout="horizontal" styleClass="AFStrechWidth">
                <af:commandButton text="#{nls['PATIENT_POPUP_TXN_UNDO_ACTION']}" action="UndoLastAction" id="cb0" immediate="true"
                                  rendered="#{PatientActionContextHelperBean.undoActionApplicable}"
                                  disabled="#{!PatientActionContextHelperBean.undoActionTxnAvailable}"
       styleClass="UndoLastEnteredBtn">
                  <af:setPropertyListener from="undo" to="#{pageFlowScope.outcome}" type="action"/>
                  <!-- This will overwrite the taskflows currentRowKeyStr that was set on launch of the taskflow.  This
                       is needed for insert operations only, but doesn't hurt for the edit either. -->
                  <af:setPropertyListener from="#{viewScope.IteratorHelperBean.currentRowKeyStr}" to="#{pageFlowScope.currentRowKeyStr}" type="action"/>
                </af:commandButton>
                <af:commandButton text="#{nls['PATIENT_POPUP_TXN_SAVE']}" action="Save" id="cb1">
                  <af:setPropertyListener from="save" to="#{pageFlowScope.outcome}" type="action"/>
                  <!-- This will overwrite the taskflows currentRowKeyStr that was set on launch of the taskflow.  This
                       is needed for insert operations only, but doesn't hurt for the edit either. -->
                  <af:setPropertyListener from="#{viewScope.IteratorHelperBean.currentRowKeyStr}" to="#{pageFlowScope.currentRowKeyStr}" type="action"/>
                </af:commandButton>
                <af:commandButton text="#{nls['PATIENT_POPUP_TXN_CANCEL']}" id="cb2" immediate="false" actionListener="#{pageFlowScope.txnPendingChangesBean.handle}">
                  <f:attribute name="taskflowAction" value="Cancel"/>
                  <af:setPropertyListener from="cancel" to="#{pageFlowScope.outcome}" type="action"/>
                  <!--af:setPropertyListener from="#{viewScope.IteratorHelperBean.currentRowKeyStr}" to="#{pageFlowScope.currentRowKeyStr}" type="action"/-->
                </af:commandButton>
                <af:commandButton text="Pop" id="showPop">
                  <af:showPopupBehavior popupId="txnPendingChangesPopup" triggerType="action"/>
                </af:commandButton>
               
          <af:popup id="txnPendingChangesPopup" childCreation="deferred"
                            binding="#{pageFlowScope.txnPendingChangesBean.txnAlertPopup}">
                    <af:dialog id="txnPendingChangesDialog" type="yesNo" title="#{nls['PENDING_CHANGES_TITLE']}"
                               dialogListener="#{pageFlowScope.txnPendingChangesBean.processDialogEvent}" modal="true">
                      <af:outputText value="#{nls['PENDING_CHANGES_TEXT']}" id="pt_ot5"/>
                    </af:dialog>
              </af:popup>
               
              </af:panelGroupLayout>
            </af:panelGroupLayout>
          </f:facet>
          </af:panelStretchLayout>
    
    
        </af:form>
      </af:document>
    
    

    Just, the tnxPendingChangesBean.handle method retrieves the bound popup and called a popup.show (hints).  Very classic approach.

    I created a simple example, and it seems to work fine.  This seems to be a matter of region.  I will post more findings as I get them.  Any ideas are appreciated.

    BradW

    So, it turns out that autoCancel = 'active' is the default value.  There was something causing a refresh of the region / pop-up window.  When this occurs, the dialog is dismissed, but not really.  You can still see this popup 11px.  AutoCancel = "disabled" setting did the trick.

    It has taken far too long to find...

    BradW

  • High memory consumption of Developer SQL 3.2.20.09.87

    Hello

    I have been using SQL Developer for some time and had initially had problems in the past with memory consuption high when I use this tool.
    I have received and applied the advice from this forum, and while he had helped a little, the majority of high memory consumption remains a problem.

    Finally, I had more time to dig around and try to isolate exactly where the problem seems to come from and here's what I found.

    (* 1) * I removed functionality updates checking
    (* 2) * I turned it off a lot of the extensions with the exception of Navigator DBA, SQL monitoring in real time, search bar, and extracts.
    (* 3) * when I start a fresh SQL Developer Session and initiate an Oracle application connection consumes about 148 meg RAM fo
    (* 4) * when I opened my Windows Task Manager and watch the memory allocated to SQL Developer, I noticed it goes back to when I move my mouse over the SQL Developer tool and when I run the menu about 5 k a second or so and the memory never came out in the system.
    (* 5) * when I run a great SQL in the memory grid jumps by about 100 meg or more and will continue to do so whenever I repeat the SQL until the SQL Developer consumes about 748 meg of RAM.
    (* 6) * 748 Meg of RAM seems to be the number when the SQL Developer (with an Oracle connection) is more continues to consume more and then not return memory to the system.

    Is it possible to have a SQL Developer automatically clear it's using active memory without closing down then restarting him?
    Why SQL Developer continues to consume memory more and more just to move your mouse or navigation in the menus?

    Here is my speech in detail;

    -----

    Oracle SQL Developer 3.2.20.09
    Version 3.2.20.09
    Build a HAND - 09.87
    Copyright © 2005, Oracle 2012. All rights reserved.
    The IDE version: 11.1.1.4.37.59.48
    Product ID: oracle.sqldeveloper
    Product version: 11.2.0.09.87

    Version
    -------

    Version of the component
    =========     =======
    Java (TM) Platform 1.6.0_35
    Oracle IDE 3.2.20.09.87

    Properties
    ----------

    Value name
    ====     =====
    awt. Sun.awt.windows.WToolkit Toolkit
    Class.Load.Environment oracle.ide.boot.IdeClassLoadEnvironment
    Class.Load.log.Level CONFIG
    Class.Transfer delegate
    leader. Encoding Cp1252
    leader. Encoding.pkg sun.io
    leader. Separator.
    Fake Ice.Browser.ForceGC
    True Ice.Pilots.html4.ignoreNonGenericFonts
    Ice.Pilots.html4.tileOptThreshold 0
    IDE. True AssertTracingDisabled
    IDE.bootstrap.Start 109707460930968
    IDE. Build HAND - 09.87
    IDE.conf C:\app\twilliams\product\11.2.0\client_3\sqldeveloper\sqldeveloper\bin\sqldeveloper.conf
    IDE.config_pathname C:\app\twilliams\product\11.2.0\client_3\sqldeveloper\sqldeveloper\bin\sqldeveloper.conf
    IDE. Fake DebugBuild
    Fake IDE.devbuild
    sqldeveloper IDE.extension.Search.Path / extensions: jdev / extensions: ide / extensions
    True IDE.firstrun
    IDE.java.MinVersion 1.6.0_04
    3276 ide.launcherProcessId
    IDE.main.Class oracle.ide.boot.IdeLauncher
    IDE.patches.dir ide/lib/patches
    IDE.pref.dir developer C:\Users\twilliams\AppData\Roaming\SQL
    IDE.pref.dir.base C:\Users\twilliams\AppData\Roaming
    IDE. Product oracle.sqldeveloper
    ide.shell.enableFileTypeAssociation C:\app\twilliams\product\11.2.0\client_3\sqldeveloper\sqldeveloper\bin\sqldeveloperW.exe
    IDE. Splash.Screen splash.gif
    ide.startingArg0 C:\app\twilliams\product\11.2.0\client_3\sqldeveloper\sqldeveloper\bin\sqldeveloperW.exe
    IDE.startingcwd C:\app\twilliams\product\11.2.0\client_3\SQLDEVELOPER\SQLDEVELOPER\BIN
    IDE. User.dir developer C:\Users\twilliams\AppData\Roaming\SQL
    IDE. User.dir.var IDE_USER_DIR
    IDE. Work.dir developer C:\Users\twilliams\Documents\SQL
    IDE. Work.dir.base C:\Users\twilliams\Documents
    fake ilog.propagatesPropertyEditors
    Java.awt.graphicsenv sun.awt.Win32GraphicsEnvironment
    Java.awt.PrinterJob sun.awt.windows.WPrinterJob
    Java.class.Path...... \ide\lib\ide-boot.jar
    Java.class.version 50.0
    Java.endorsed.dirs C:\app\twilliams\product\11.2.0\client_3\sqldeveloper\jdk\jre\lib\endorsed
    Java.ext.dirs C:\app\twilliams\product\11.2.0\client_3\sqldeveloper\jdk\jre\lib\ext; C:\Windows\Sun\Java\lib\ext
    Java.Home C:\app\twilliams\product\11.2.0\client_3\sqldeveloper\jdk\jre
    Java.IO.TMPDIR c:\Temp\
    Java.Library.Path C:\app\twilliams\product\11.2.0\client_3\sqldeveloper\sqldeveloper\bin; C:\Windows\Sun\Java\bin; C:\Windows\System32; C:\Windows; C:\app\twilliams\product\11.2.0\client_3\bin; C:\app\twilliams\product\11.2.0\client_3; C:\Windows\System32; C:\Windows; C:\Windows\System32\Wbem; C:\Windows\system32\WindowsPowerShell\v1.0\; C:\Program Files\Lenovo\Access Connections\. C:\Program Files\WinMerge; C:\Program logiciels\ ThinkPad;
    Java.naming.Factory.initial oracle.javatools.jndi.LocalInitialContextFactory
    Java.Protocol.Handler.pkgs oracle.jdevimpl.handler
    Java.Runtime.Name Java (TM) SE Runtime Environment
    Java.Runtime.version 1.6.0_35 - b10
    Java.Specification.Name Java Platform API Specification
    Java.Specification.Vendor Sun Microsystems Inc.
    Java.Specification.version 1.6
    Java.util.Logging.config.file logging.conf
    Java.Vendor Sun Microsystems Inc.
    Http://java.sun.com/ Java.Vendor.URL
    Java.Vendor.URL.bug http://java.sun.com/cgi-bin/bugreport.cgi
    Java.version 1.6.0_35
    Java.VM.info mixed mode
    Java.VM.Name machine customer of Java virtual
    Java.VM.Specification.Name specification of Machine Java virtual
    Java.VM.Specification.Vendor Sun Microsystems Inc.
    Java.VM.Specification.version 1.0
    Java.VM.Vendor Sun Microsystems Inc.
    Java.VM.version 20.10 - b01
    JDBC. Driver.Home /C:/app/twilliams/product/11.2.0/client_3/
    JDBC. Library /C:/app/twilliams/product/11.2.0/client_3/jdbc/lib/ojdbc6.jar
    Line.Separator \r\n
    Oracle.Home C:\app\twilliams\product\11.2.0\client_3\sqldeveloper
    true oracle.ide.util.AddinPolicyUtils.OVERRIDE_FLAG
    fake oracle.jdbc.mapDateToTimestamp
    of Oracle.translated.locales, are, fr, it, ja, ko, pt_BR, zh_CN, zh_TW
    Oracle.xdkjava.Compatibility.version 9.0.4
    orai18n. Library /C:/app/twilliams/product/11.2.0/client_3/jlib/orai18n.jar
    OS. Arch x 86
    OS. Name Windows 7
    OS.version 6.1
    Path.Separator;
    con reserved_filenames, to the, prn, lpt1, lpt2, lpt3, lpt4, lpt5, lpt6, lpt7, lpt8, lpt9, com1, com2, com3, com4, com5, com6, com7, com8, com9, conin$, conout, conout$
    sqldev. False debug
    Sun.Arch.Data.Model 32
    Sun.Boot.class.Path C:\app\twilliams\product\11.2.0\client_3\sqldeveloper\jdk\jre\lib\resources.jar; C:\app\twilliams\product\11.2.0\client_3\sqldeveloper\jdk\jre\lib\rt.jar; C:\app\twilliams\product\11.2.0\client_3\sqldeveloper\jdk\jre\lib\sunrsasign.jar; C:\app\twilliams\product\11.2.0\client_3\sqldeveloper\jdk\jre\lib\jsse.jar; C:\app\twilliams\product\11.2.0\client_3\sqldeveloper\jdk\jre\lib\jce.jar; C:\app\twilliams\product\11.2.0\client_3\sqldeveloper\jdk\jre\lib\charsets.jar; C:\app\twilliams\product\11.2.0\client_3\sqldeveloper\jdk\jre\lib\modules\jdk. Boot.jar; C:\app\twilliams\product\11.2.0\client_3\sqldeveloper\jdk\jre\classes
    Sun.Boot.Library.Path C:\app\twilliams\product\11.2.0\client_3\sqldeveloper\jdk\jre\bin
    Small Sun.CPU.endian
    Sun.CPU.isalist pentium_pro + pentium mmx + mmx pentium i486 i386 i86 pentium_pro
    Sun.Desktop windows
    Sun.IO.Unicode.Encoding UnicodeLittle
    Fake Sun.Java2D.ddoffscreen
    Sun.JNU.Encoding Cp1252
    Sun.Management.Compiler HotSpot Client compiler
    Sun.OS.patch.Level Service Pack 1
    User.Country U.S.
    User.dir C:\app\twilliams\product\11.2.0\client_3\SQLDEVELOPER\SQLDEVELOPER\BIN
    User.Home-C:\Users\twilliams
    User.language en
    User.Name twilliams
    User.TimeZone America/Los Angeles
    User.Variant
    Windows.Shell.font.Languages

    Extensions
    ----------

    Name identifier Version status
    ====     ==========     =======     ======
    Check For Updates oracle.ide.webupdate 11.1.1.4.37.59.48 responsible
    Oracle.ide.ceditor 11.1.1.4.37.59.48 code editor in charge
    Charge of the component Palette oracle.ide.palette1 11.1.1.4.37.59.48
    Data Miner oracle.dmt.dataminer 11.2.1.1.09.87 disabled by user
    Support connection to database oracle.jdeveloper.db.connection 11.1.1.4.37.59.48 responsible
    Charge of the object database explorers oracle.ide.db.explorer 11.1.1.4.37.59.48
    Charge of oracle.ide.db of the user interface of database 11.1.1.4.37.59.48
    Schema oracle.diagram framework 11.1.1.4.37.59.48 Loaded
    Diagram of Javadoc Extension oracle.diagram.javadoc 11.1.1.4.37.59.48 Loaded
    Diagram thumbnail oracle.diagram.thumbnail 11.1.1.4.37.59.48 Loaded
    Diff/Merge oracle.ide.diffmerge 11.1.1.4.37.59.48 responsible
    Extended Platform IDE oracle.javacore 11.1.1.4.37.59.48 responsible
    Oracle.IDE.externaltools of external tools 11.1.1.4.37.59.48 responsible
    Support oracle.ide.files 11.1.1.4.37.59.48 Loaded file
    Help oracle.ide.help system 11.1.1.4.37.59.48 Loaded
    Steeped in history oracle.jdeveloper.history Support 11.1.1.4.37.59.48
    Charge of the Import/Export oracle.ide.importexport 11.1.1.4.37.59.48 Support
    Index Migrator support oracle.ideimpl.indexing - migrator 11.1.1.4.37.59.48 Loaded
    JDeveloper Runner oracle.jdeveloper.runner 11.1.1.4.37.59.48 responsible
    JViews record Addin oracle.diagram.registration 11.1.1.4.37.59.48 responsible
    Connect to oracle.ide.log 11.1.1.4.37.59.48 of the Loaded window
    Mac OS X adapter oracle.ideimpl.apple 11.1.1.4.37.59.48 responsible
    Navigator oracle.ide.navigator 11.1.1.4.37.59.48 responsible
    Gallery of the object oracle.ide.gallery 11.1.1.4.37.59.48 responsible
    Oracle IDE oracle.ide 11.1.1.4.37.59.48 responsible
    Oracle SQL Developer oracle.sqldeveloper 11.2.0.09.87 responsible
    Oracle SQL Developer - 3rd party browsers oracle.sqldeveloper.thirdparty.browsers 11.2.0.09.87 Database loaded
    Oracle SQL Developer - APEX listener Administration oracle.sqldeveloper.listener 11.2.0.09.87 responsible
    Oracle SQL Developer - change Mangement oracle.sqldeveloper.em_cm 11.2.0.09.87 responsible
    Oracle SQL Developer - DBA Navigator oracle.sqldeveloper.dbanavigator 11.2.0.09.87 responsible
    Oracle SQL Developer - database oracle.sqldeveloper.dbcart 11.2.0.09.87 basket loaded
    Oracle SQL Developer - Extras oracle.sqldeveloper.extras 11.2.0.09.87 responsible
    Oracle SQL Developer - file Navigator oracle.sqldeveloper.filenavigator 11.2.0.09.87 loaded
    Oracle SQL Developer - missing dependencies of migration Antlr3 translator oracle.sqldeveloper.migration.translation.core_antlr3 11.2.0.09.87: oracle.sqldeveloper.migration
    Oracle SQL Developer - Migration oracle.sqldeveloper.migration.application 11.2.0.09.87 migration applications disabled by user
    Oracle SQL Developer - Migration Core oracle.sqldeveloper.migration 11.2.0.09.87 disabled by user
    Oracle SQL Developer - DB2 migration oracle.sqldeveloper.migration.db2 11.2.0.09.87 disabled by user
    Oracle SQL Developer - missing dependencies of migration DB2 translator oracle.sqldeveloper.migration.translation.db2 11.2.0.09.87: oracle.sqldeveloper.migration, oracle.sqldeveloper.migration.translation.core_antlr3
    Oracle SQL Developer - Migration Microsoft Access oracle.sqldeveloper.migration.msaccess 11.2.0.09.87 disabled by user
    Oracle SQL Developer - Migration Microsoft SQL Server oracle.sqldeveloper.migration.sqlserver 11.2.0.09.87 disabled by user
    Oracle SQL Developer - Migration MySQL oracle.sqldeveloper.migration.mysql 11.2.0.09.87 disabled by user
    Oracle SQL Developer - Migration Sybase Adaptive Server oracle.sqldeveloper.migration.sybase 11.2.0.09.87 disabled by user
    Oracle SQL Developer - migration T missing dependencies - SQL Translator oracle.sqldeveloper.migration.translation.core 11.2.0.09.87: oracle.sqldeveloper.migration
    Oracle SQL Developer - Migration Teradata oracle.sqldeveloper.migration.teradata 11.2.0.09.87 disabled by user
    Oracle SQL Developer - missing dependencies of migration Teradata SQL Translator oracle.sqldeveloper.migration.translation.teradata_translator 11.2.0.09.87: oracle.sqldeveloper.migration, oracle.sqldeveloper.migration.translation.core
    Oracle SQL Developer - Migration UI oracle.sqldeveloper.migration.translation.gui 11.2.0.09.87 translation disabled by user
    Oracle SQL Developer - Object oracle.sqldeveloper.oviewer 11.2.0.09.87 browser loaded
    Oracle SQL Developer - Real Time SQL Monitoring oracle.sqldeveloper.sqlmonitor 11.2.0.09.87 responsible
    Oracle SQL Developer - reports oracle.sqldeveloper.report 11.2.0.09.87 responsible
    Oracle SQL Developer - oracle.sqldeveloper.scheduler 11.2.0.09.87 Planner disabled by user
    Oracle SQL Developer - schema browser oracle.sqldeveloper.schemabrowser 11.2.0.09.87 responsible
    Oracle SQL Developer - SearchBar oracle.sqldeveloper.searchbar 11.2.0.09.87 responsible
    Oracle SQL Developer - Security oracle.sqldeveloper.security 11.2.0.09.87 disabled by user
    Oracle SQL Developer - extract oracle.sqldeveloper.snippet 11.2.0.09.87 responsible
    Oracle SQL Developer - spatial oracle.sqldeveloper.spatial 11.2.0.09.87 disabled by user
    Oracle SQL Developer - TimesTen oracle.sqldeveloper.timesten 11.2.0.09.87 disabled by user
    Oracle SQL Developer - Tuning oracle.sqldeveloper.tuning 11.2.0.09.87 responsible
    Oracle SQL Developer - Unit Test oracle.sqldeveloper.unit_test 11.2.0.09.87 disabled by user
    Oracle SQL Developer - support to users oracle.sqldeveloper.userextensions 11.2.0.09.87 Extensions loaded
    Oracle SQL Developer - spreadsheet v2 oracle.sqldeveloper.worksheet 11.2.0.09.87 responsible
    Oracle SQL Developer - oracle.sqldeveloper.xmlschema 11.2.0.09.87 XML schema loaded
    Oracle SQL Developer Data Modeling oracle.datamodeler 3.1.4.710 disabled by user
    Data Modeler Oracle SQL Developer - reports oracle.sqldeveloper.datamodeler_reports 11.2.0.09.87 disabled by user
    Debugger oracle.jdeveloper.db.debug.probe 11.1.1.4.37.59.48 Loaded PROBE
    Look oracle.ide.peek 11.1.1.4.37.59.48 responsible
    Storage Oracle.IDE.persistence persistent 11.1.1.4.37.59.48 loaded
    Support for the property inspector oracle.ide.inspector 11.1.1.4.37.59.48
    QuickDiff oracle.ide.quickdiff 11.1.1.4.37.59.48 responsible
    Charge to replace by oracle.ide.replace 11.1.1.4.37.59.48
    Runner oracle.ide.runner 11.1.1.4.37.59.48 load
    THT oracle.ide.vhv 11.1.1.4.37.59.48 responsible
    Versioning Support oracle.jdeveloper.vcs 11.1.1.4.37.59.48 disabled by the user
    Support for versioning for missing dependencies of Subversion oracle.jdeveloper.subversion 11.1.1.4.37.59.48: oracle.jdeveloper.vcs
    Oracle.IDE.VFS of charge virtual filesystem 11.1.1.4.37.59.48
    Browser Web and Proxy oracle.ide.webbrowser 11.1.1.4.37.59.48 responsible
    Load the Extension XML Editing Framework IDE oracle.ide.xmlef 11.1.1.4.37.59.48
    Audit oracle.ide.audit 11.1.1.4.37.59.48 Loaded
    classpath: protocol extension oracle.jdeveloper.classpath 11.1.1.0.0 Manager support
    jdukshare oracle.bm.jdukshare 11.1.1.4.37.59.48 responsible
    MOF - xmi oracle.mof.xmi 11.1.1.4.37.59.48 responsible
    Oracle.IDE.Dependency oracle.ide.dependency 11.1.1.4.37.59.48 responsible
    Oracle.IDE.Indexing oracle.ide.indexing 11.1.1.4.37.59.48 responsible
    Palette2 oracle.ide.palette2 11.1.1.4.37.59.48 responsible
    status oracle.ide.status 11.1.1.4.37.59.48 responsible



    Thanks in advance...
    Tom

    Published by: ERPDude on February 28, 2013 14:46

    Hi Tom,

    Memory consumption you observe is characteristic of the machine virtual Java and algorithm of garbage collection that he uses. There are a few tricks you can use to improve the deallocation of memory in the JAVA virtual machine. See the following topics:
    Re: Reduce the footprint memory SQLDeveloper with JDK 1.7
    Re: Memory leak or bad Java Garbage Collector

    In addition, it is best to follow the size of the heap of the JVM and memory via a memory profiler. The Task Manager is supposed to these exaggerate.

    Kind regards
    Gary
    SQL development team

Maybe you are looking for