Merge in oracle

I have a table A and Table B. I want to use a merge statement for following
1) If Not matched then update values in Table B from table A.
2) If not matched then insert values from table A to Table B
3) If value is present in Table B and not in Table A it should delete the value from Table B as well.
Can we achive this using merge statement.? If yes how?. point no 1 and 2 can be but I want to know how can it use for point 3.
Thanks for any help.

Solomon Yakobson wrote:
3) & 1) are conflicting.Oops,
I misread 3). You could:
create table tbl1
  as
    select  level id,
            chr(ascii('A') + level - 1) val
      from  dual
      connect by level <= 10
create table tbl2
  as
    select  level + 5 id,
            chr(ascii('A') + level + 4) val
      from  dual
      connect by level <= 10
select  *
  from  tbl1
select  *
  from  tbl2
SQL> select  *
  2    from  tbl1
  3  /
        ID V
         1 A
         2 B
         3 C
         4 D
         5 E
         6 F
         7 G
         8 H
         9 I
        10 J
10 rows selected.
SQL> select  *
  2    from  tbl2
  3  /
        ID V
         6 F
         7 G
         8 H
         9 I
        10 J
        11 K
        12 L
        13 M
        14 N
        15 O
10 rows selected.
merge
  into tbl1 t1
  using (
          select  id,
                  val,
                  1 weight
            from  tbl2
         union all
          select  id,
                  val,
                  2 weight
            from  tbl1
            where id not in (
                             select  id
                               from  tbl2
        ) t2
  on (
      t1.id = t2.id
  when not matched
    then
      insert
        values(
               t2.id,
               t2.val
  when matched
    then
      update
        set val = t2.val
        delete where t2.weight = 2
SQL> select  *
  2    from  tbl1
  3    order by id
  4  /
        ID V
         6 F
         7 G
         8 H
         9 I
        10 J
        11 K
        12 L
        13 M
        14 N
        15 O
10 rows selected.
SQL> SY.

Similar Messages

  • Which is better: Oracle incremental update (merge) or Oracle incremental update

    Hi All,
    We have big data load happening from Oracle RDBMS(source) to Oracle RDBMS(target). The data is huge (in billions) and new insertions, updates will happen. I would like to understand which among
    Oracle incremental update (merge) or Oracle incremental update is better and faster -  for first load and subsequent incremental updates, deletes? I request you all to provide valid reasons since I need to present the same to my client
    If at all Oracle incremental update (merge) is better, then why ODI needs to have Oracle incremental update IKM.
    I have seen some discussions on the same topic but I have not yet got a proper response with reasons and that is why I am posting the question again
    Thanks & Regards,
    Sijee Sadasivan

    Hi Sijee Sadasivan,
    IKM SQL Control Append could be faster for the initial load. You will therefore need another interface for the initial load.
    From my experience IKM Oracle Incremental Update (Merge) is faster than IKM Oracle Incremental Update for the incremental load, but I think the best thing to do is to try it on your environment. Nothing is better than a benchmark .
    IKM Oracle Incremental Update is useful for Oracle RDBMS < 9i, before this syntax was introduced.
    Regards,
    JeromeFr

  • Merging with Oracle BI Administration Tool

    I have specific question about merging with Oracle BI Administration Tool.
    At first, I copied rpd by merging with no common parent. After that, I renamed all objects in business layer and presentation layer, renamed name of database, name of connection pool, name of scheme in physical layer and deleted old aliases. And now, I want to merge my original rpd and final rpd, but I got this error:
    Following objects didn't merge properly:
    Logical Column ...
    Logical Column ...
    Logical Column ...
    Logical Column ...
    How can I solve this problem?
    Edited by: kubes on 29.01.2012 23:58

    Hi,
    check whether you are merging as "No common parent " or with "Common parent".
    Thanks
    Kishore P

  • How to merge two Oracle SSO IDs?

    As many have noticed, I have 2 SSO ids: 'Hans Forbrich' that I have had for many years; and Hans Forbrich (alt ID) that was created by the OU group for SSO access to OU sites.
    I'm wondering how to merge these two IDs while retaining the Oracle University Single Sign On capability.

    Have you tried to sign in to OU with the other ID? I
    would think that you would be able to since OU uses
    SSO as well (it may not have in the past).Oh yes. Does not work.
    >
    It may be just a matter of having some OU folks add
    your other account to the database.Not quite that simple. They have a few extra settings, and permissions, tied to the user id. And effective and expiry dates. And ...

  • When doing a MERGE in Oracle SQL, how can I update rows that aren't matched

    Hi,
    create table TEST1
    History_date Date,
    ID NUMBER not null
    create table TEST2
    ID NUMBER not null,
    History_date Date,
    We_history_date Date
    Can we do like this...
    merge into test2 t2
    using
    test1 t1
    ON (t1.id = t2.id)
    when matched
    update set t2.We_history_date = t1.history_date
    when not matched
    update set t2.We_history_date = NVL(t2.we_history_date,SYSDATE);Thanks,
    Edited by: 960736 on Sep 27, 2012 2:05 PM

    There is nothing to update if there is no match.
    You need to INSERT a new record.
    See the Examples section of the MERGE statement in the SQL Language doc
    http://docs.oracle.com/cd/B28359_01/server.111/b28286/statements_9016.htm
    >
    Examples
    Merging into a Table: Example The following example uses the bonuses table in the sample schema oe with a default bonus of 100. It then inserts into the bonuses table all employees who made sales, based on the sales_rep_id column of the oe.orders table. Finally, the human resources manager decides that employees with a salary of $8000 or less should receive a bonus. Those who have not made sales get a bonus of 1% of their salary. Those who already made sales get an increase in their bonus equal to 1% of their salary. The MERGE statement implements these changes in one step:
    MERGE INTO bonuses D
    USING (SELECT employee_id, salary, department_id FROM employees
    WHERE department_id = 80) S
    ON (D.employee_id = S.employee_id)
    WHEN MATCHED THEN UPDATE SET D.bonus = D.bonus + S.salary*.01
    DELETE WHERE (S.salary > 8000)
    WHEN NOT MATCHED THEN INSERT (D.employee_id, D.bonus)
    VALUES (S.employee_id, S.salary*.01)
    WHERE (S.salary <= 8000);

  • Prod Orders merge for oracle requirement

    Hi,
    Iu2019m a xi consultant. I need to know about Production Order processing.
    Iu2019ve to send sales orders (with multiple items) from oracle. And I need to get back the
    production orders back to oracle.
    Like:
    Sales order 1 header
    Sales order item1u2026
    Sales order item 2u2026
    Sales order 2 header
    Sales order item1u2026
    Sales order item 2u2026
    u2026.
    As per my understanding, for each sales order item, thereu2019ll be a production order in sap. If this is right, If I use Idoc LOIPRO, Iu2019ll get the individual production orders per every idoc. But I need to send the same way I get the data from Oracle.
    Like:
    Production order 1 header (with ref. to sales order 1 header)
    Production order item1u2026  (with ref. to sales order item 1 header)
    Production order item 2u2026 (with ref. to sales order item 2 header)
    Production order 2 header (with ref. to sales order 2 header)
    Production order item1u2026(with ref. to sales order item 1 header)
    Production order item 2u2026(with ref. to sales order item 2 header)
    u2026
    This is the requirement from customer side.
    Is it possible with standard Idoc LOIPRO?
    If yes, where I need to consolidate(merge) the individual IDocs to a single production order response to oracle?
    Is there any better approach?
    thanks
    zia

    Solved.

  • Mail-merging from Oracle HRMS - Web ADI vs BI Publisher

    Hi
    I'm currently involved in a project to automate the production of candidate offer letters and contracts from HRMS for our shared HR service centre. The solution I've built to date uses custom database tables and PL/SQL to select the relevant text for the candidate based on a set of criteria, and views to supply the necessary data to Web ADI which then performs the actual merge into a template Microsoft Word document on demand from the end-user.
    The issue we're facing is that the Web ADI to Word interface can't handle more than 64 merge fields (Word basically throws up an error saying the maximum number of fields has been exceeded) so I'm looking at alternatives which will still provide the same (or nearly the same) functionality in terms of mail-merging. From the looks of things it seems like BI Publisher could be a potential alternative; I do however have a few questions which I hope someone can answer!
    1) How easily can BI Publisher be integrated with HRMS to provide such mail-merge functionality on demand? How would such integration be achieved e.g. concurrent program, button on the toolbar in HRMS?
    2) How many merge fields can BI Publisher handle? Our largest letter has nearly 100 unique fields, a number which could go up or down over time.
    3) I understand from looking at some of the tutorials and demos that an RTF template could be used as the basis for the mail merge - where would this be stored, on the database or the file system?
    4) Are there any case studies out there which cover such an implementation of BI Publisher? This would be really useful as it would help in formulating a recommendation to my project manager!
    Many thanks
    Geoff Butler

    metalray wrote:
    Well, glad you got soemthing. Now I try to be more "properly" for you :)
    Good that you are trying.
    The LDAP users do not show up in my Web Logic console. Is a functionality available to allocate the LDAP users to Oracle user groups in web logic or do I expect too much?LDAP = what in your case, do you mean Active Directory .? or any other LDAP directory .?
    You need to configure that in weblogic as one of the authentication providers if you have not done so yet, otherwise they cannot magically appear in WLS console.
    So I am assuming you are expecting too much if you have not configured and trying to look for LDAP users. Let us know if you have already configured one but having trouble managing these users.
    If the functionality (allocating LDAP users to groups) exists in the oracle web logic console,Even though you configure LDAP users in WLS , you cannot assign LDAP users to LDAP groups in WLS since you have to do that in your LDAP not in WLS.
    why does this functionality also in the Oracle BI Publisher Admin screen?Oracle BI Publisher security is managed by Fusion middleware security model not Weblogic , so to get the LDAP users to BIP you need to integrate OBIEE security to BI Publisher.
    Hope this helps. ! Mark if it does.
    Thanks,
    SVS

  • Nested loop join v/s Sort merge

    I have seen that nested loops are better if the inner table is being indexed, because for each outer table row, we are looking for a match in the inner table. But is there any case when optimizer still goes for a nested loop even if there is no index on the inner table. That is my first question ?
    My second question := When doing a sort merge join oracle has to sort both result sets and then merge them. Oracle says that if both the row sets, if already sorted is definately better for performance. Ya thats obvious. But back to my upper question, when there is no index on the inner table, is it the situation when oracle goes for a sort merge join ?

    My response should really have examples but since I do not have any handy I will just say about your first question. If there is no index available from table A to table B yes it is possible a nested loop join may still be used and table B read via full table scan within a nested loop. If table B is very small and consists of only a block or two this may be relatively efficient plan. It is more likely you sould see table B full scanned and the result feed into a hash join, but I have seen the plan you mention.
    Back before hash joins were introduced with 7.3 (if my memory is correct) you would see sort/merge joins used more often than you do now. Generally speaking no index on the join conditions would exist for this option to be chosen.
    If you really want to know why and sometimes what the optimizer is going to do buy Jonathan Lewis's book Cost-Based Oracle Fundamentals. If explains the optimizer in more depth than any other source I know of.
    HTH -- Mark D Powell --

  • Oracle database server Installation on windows

    Hello together,
    We have several Oracle installation inhouse. All on different servers. Now we would to merge the Oracle database on one production and on one test server.
    What is the best way to do that? We must decide between Windows and Linux Server.
    On the windows Server we must use a Enterprise 64bit system to get i.e. 32 memory.?!! Is that right?
    Thanks in advance.
    regards Steff

    user10985075 wrote:
    Hi,
    thanks for the quick answer.
    Do you have some negativ experience with an Windows Server?
    -- I mean a 64bit Windows Server with 32GB Ram on it. --
    regards
    StefanWho doesn't have negative experience with Windows?

  • Merge 4411462 and 5073249 patches?

    Performing EBS database upgrade from 9.2 to 10G:
    Step 21 of note:362203.1 says to apply 9 database patches. Two of the patches in the list conflict with each other (4411462 and 5073249). How did you guys handle this? Did you skip the 5073249 patch and request a merge from Oracle and in the meantime proceed with the upgrade?

    Even better, there were file conflicts with the BIS patches and the quarterly critical patch updates. Whenever I applied a CPU patch, opatch rolled back those BIS patches. After about 4 or 5 TARs, I was able to get them merged with the latest CPU build for 10.2.0.2.
    For Cotober 2006 CPU, there was a super merge that merges the BIS patches with the CPU updates:
    5598552 SUPER MLR FOR CPUOCT2006 ON 10.2.0.2
    For January 2007 CPU, (5689957 CPU MLR patch for 10.2.0.2 on 23), 4411462 and 5073249 are listed in the bugs fixed section, and should be included in 10.2.0.2 CPU fixes going forward.

  • Merge using schema.subquery

    there is a tiny error in the syntax illustration of the merge syntax
    Oracle® Database SQL Reference
    10g Release 2 (10.2)
    Part Number B14200-02
    MERGE
    Description of the illustration merge.gif
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14200/img/merge.gif
    MERGE [ hint ]
       INTO [ schema. ] { table | view } [ t_alias ]
       USING [ schema. ] { table | view | subquery }
         [ t_alias ]
       ON ( condition )
       [ merge_update_clause ]
       [ merge_insert_clause ]
       [ error_logging_clause ] ;schema.subquery is of course invalid, so I may suggest
    USING {  { [ schema. ] { table | view } } | subquery }
    [ t_alias ]
    Regards
    Laurent

    Hi Diana,
    Thanks a lot for your answer. Actually, I think you should use
    USING dml_table_expression_clause [ alias ]as for insert
    DML_table_expression_clause.gif
    SQL>
    SQL> merge into t1 using t2 partition (p1)
      2  on (t1.x=t2.x)
      3  when not matched then
      4    insert values(t2.x);
    0 rows merged.
    SQL>
    SQL> merge into t1 using t2 subpartition (p11)
      2  on (t1.x=t2.x)
      3  when not matched then
      4    insert values(t2.x);
    0 rows merged.
    SQL>
    SQL> merge into t1 using table(f)
      2  on (t1.x=column_value)
      3  when not matched then
      4    insert values(column_value);
    1 row merged.and review the text description of DML_TABLE_EXPRESSION clause
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14200/img_text/DML_table_expression_clause.htm
    ... because it is not very accurate
    { [ schema. ]
      { table
        [ { PARTITION (partition)
          | SUBPARTITION (subpartition)
        | @ dblink
      | { view | materialized view } [ @ dblink ]
    | ( subquery [ subquery_restriction_clause ] )
    | table_collection_expression
    }should be
    { [ schema. ]
      table
          { PARTITION (partition)
            | SUBPARTITION (subpartition)
          | @ dblink
      | { view | materialized view } [ @ dblink ]
    | ( subquery [ subquery_restriction_clause ] )
    |  table_collection_expression

  • Corellated update AND merge(update only)

    Hi ,
    I have few corellated updates in my code , which i though ,i can replace with 10g new Merge update only stmt.
    But to my surprise , the sql using merge is showing more cost and using full table scan.
    Please find below the sql stmts. below(example). Am using Oracle 10.2.0.1
    create table t1 as select * from all_objects where rownum<10000;
    create table t2 as select * from t1 where rownum<10000-200;
    create unique index t1_objId_ind on t1(object_id);
    create unique index t2_objId_ind on t2(object_id);
    --Corellated updated query
    update t1 set t1.object_name= (select upper(t2.object_name) from t2 where t1.object_id=t2.object_id)
    where T1.OBJECT_ID IN (SELECT t2.object_id from t2);Explan for above update stmt.
    | Id  | Operation                    | Name         | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | UPDATE STATEMENT             |              |  9139 |   383K|    37   (9)| 00:00:01 |
    |   1 |  UPDATE                      | T1           |       |       |            |          |
    |   2 |   NESTED LOOPS               |              |  9139 |   383K|    37   (9)| 00:00:01 |
    |   3 |    TABLE ACCESS FULL         | T1           |  9138 |   267K|    35   (3)| 00:00:01 |
    |*  4 |    INDEX UNIQUE SCAN         | T2_OBJID_IND |     1 |    13 |     0   (0)| 00:00:01 |
    |   5 |   TABLE ACCESS BY INDEX ROWID| T2           |     1 |    30 |     2   (0)| 00:00:01 |
    PLAN_TABLE_OUTPUT
    |*  6 |    INDEX UNIQUE SCAN         | T2_OBJID_IND |     1 |       |     1   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       4 - access("T1"."OBJECT_ID"="T2"."OBJECT_ID")
       6 - access("T2"."OBJECT_ID"=:B1)I wanted to eliminate the corellated update , So i wrote using MERGE as below
    MERGE INTO T2
    USING T1
    ON (t1.object_id=t2.object_id)
    WHEN MATCHED THEN update
      SET T2.OBJECT_NAME=UPPER(T1.OBJECT_NAME);Explan for above MERGE stmt.
    | Id  | Operation            | Name | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
    |   0 | MERGE STATEMENT      |      |  9139 |   303K|       |   201    (2)| 00:00:03 |
    |   1 |  MERGE               | T2   |       |       |       |            |          |
    |   2 |   VIEW               |      |       |       |       |            |          |
    |*  3 |    HASH JOIN         |      |  9139 |  2391K|  1256K|   201   (2)| 00:00:03 |
    |   4 |     TABLE ACCESS FULL| T1   |  9138 |  1142K|       |    35   (3)| 00:00:01 |
    |   5 |     TABLE ACCESS FULL| T2   |  9671 |  1322K|       |    34   (3)| 00:00:01 |
    PLAN_TABLE_OUTPUT
    Predicate Information (identified by operation id):
       3 - access("T1"."OBJECT_ID"="T2"."OBJECT_ID")Cost is 201 , but for the corellated update the cost is 37.
    Any idea , how should i re-write the MERGE stmt.?
    Edited by: kumar on Jun 16, 2011 4:41 PM

    First "cost" is just a number and you should not compare or tune to get the best "cost" in an execution plan.
    What counts ist elapsed time => IO, CPU...
    In 11g the "cost" for the merge is better (and also the CPU time is far off to be close to the truth!)
    9799 rows updated
    78ms elapsed
    Plan hash value: 580992724
    | Id  | Operation                    | Name         | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | UPDATE STATEMENT             |              |  9641 |   404K| 28964  (34)| 00:05:48 |
    |   1 |  UPDATE                      | T1           |       |       |            |          |
    |   2 |   NESTED LOOPS               |              |  9641 |   404K|    41   (3)| 00:00:01 |
    |   3 |    TABLE ACCESS FULL         | T1           | 10866 |   318K|    40   (0)| 00:00:01 |
    |*  4 |    INDEX UNIQUE SCAN         | T2_OBJID_IND |     1 |    13 |     0   (0)| 00:00:01 |
    |   5 |   TABLE ACCESS BY INDEX ROWID| T2           |     1 |    30 |     2   (0)| 00:00:01 |
    |*  6 |    INDEX UNIQUE SCAN         | T2_OBJID_IND |     1 |       |     1   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       4 - access("T1"."OBJECT_ID"="T2"."OBJECT_ID")
       6 - access("T2"."OBJECT_ID"=:B1)
    Note
       - dynamic sampling used for this statement (level=2)
    commited
    16ms elapsed
    9799 rows merged
    125ms elapsed
    Plan hash value: 2009158753
    | Id  | Operation            | Name | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
    |   0 | MERGE STATEMENT      |      |  9641 |   320K|       |   251   (1)| 00:00:04 |
    |   1 |  MERGE               | T2   |       |       |       |            |          |
    |   2 |   VIEW               |      |       |       |       |            |          |
    |*  3 |    HASH JOIN         |      |  9641 |  3088K|  1720K|   251   (1)| 00:00:04 |
    |   4 |     TABLE ACCESS FULL| T2   |  9640 |  1600K|       |    39   (0)| 00:00:01 |
    |   5 |     TABLE ACCESS FULL| T1   | 10866 |  1676K|       |    40   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       3 - access("T1"."OBJECT_ID"="T2"."OBJECT_ID")
    Note
       - dynamic sampling used for this statement (level=2)In your example, the elapsed time (thanks for the it!) is 78ms for the update and 125ms for the MERGE. (ORACLE 11g on and old PC) .
    So "should you rewrite" the MERGE? No idea how. I assume you want to change from UPDATE to MERGE and see if it's worth?
    Here it's not. But, your example just uses 2MB of data. And the difference from my point view is not MERGE or UPDATE it's NL against HASH join with that tiny amount of data.
    So generally I use MERGE because of speed and because I have more control over the query. For updating 2MB of data, it's not worth it. For updating GBytes the stuff I worked on it was faster (and better to control).

  • Merge statement hangs

    Dear all
    I am using oracle 9i(9.2.0.1.0). I have a Merge statement which inserts 14million records.
    I am able to execute the merge statement in 4mins.
    When i try to execute the same merge on oracle (9.2.0.6 ) with same hardware config on client machine, My merge statement hangs.
    Please let me know if any patches are there and what all parameters do i need to look into to trace the problem.
    Regards
    Surendra

    Hi
    Do you have the same indexes and statistics in the two systems?
    Ott Karesz
    http://www.trendo-kft.hu

  • OEPE exception with the latest plugin version.

    Hi,
    I updated my OEPE eclipe plugin to the latest version and I got this exception:
    !ENTRY org.eclipse.core.resources 4 75 2012-01-30 13:38:39.578
    !MESSAGE Errors occurred during the build.
    !SUBENTRY 1 org.eclipse.wst.common.project.facet.core 4 75 2012-01-30 13:38:39.578
    !MESSAGE Errors running builder 'Faceted Project Validation Builder' on project 'NTCSCacheCore'.
    !STACK 0
    java.lang.ExceptionInInitializerError
    at oracle.eclipse.tools.weblogic.WlsRuntimeUtil.getWlsRuntimeComponent(WlsRuntimeUtil.java:92)
    at oracle.eclipse.tools.weblogic.internal.validation.WlsRuntimeValidator.validate(WlsRuntimeValidator.java:45)
    at org.eclipse.wst.common.project.facet.core.internal.FacetedProjectValidationBuilder.build(FacetedProjectValidationBuilder.java:132)
    at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:728)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:199)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:239)
    at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:292)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:295)
    at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:351)
    at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:374)
    at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:143)
    at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:241)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
    Caused by: java.lang.IllegalArgumentException: Version 10.0 of runtime component type com.bea.weblogic has not been defined.
    at org.eclipse.wst.common.project.facet.core.util.internal.Versionable.getVersion(Versionable.java:80)
    at org.eclipse.wst.common.project.facet.core.runtime.internal.RuntimeComponentType.getVersion(RuntimeComponentType.java:1)
    at oracle.eclipse.tools.weblogic.server.WebLogicServerRuntimeComponentType.<clinit>(WebLogicServerRuntimeComponentType.java:19)
    ... 15 more
    Any idea why this is happening when I updated the plugin.
    === Eclipse configuration ===
    *** Date: Monday, January 30, 2012 2:03:58 PM Western European Time
    *** Platform Details:
    *** System properties:
    awt.toolkit=sun.awt.X11.XToolkit
    eclipse.application=org.eclipse.ui.ide.workbench
    eclipse.buildId=M20110909-1335
    eclipse.commands=-os
    linux
    -ws
    gtk
    -arch
    x86
    -showsplash
    /home/guerra/devel/ide/indigo/eclipse//plugins/org.eclipse.platform_3.7.1.v201109091335/splash.bmp
    -launcher
    /home/guerra/devel/ide/indigo/eclipse/eclipse
    -name
    Eclipse
    --launcher.library
    /home/guerra/devel/ide/indigo/eclipse//plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.100.v20110505/eclipse_1407.so
    -startup
    /home/guerra/devel/ide/indigo/eclipse//plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
    --launcher.overrideVmargs
    -product
    org.eclipse.epp.package.jee.product
    -vm
    /usr/local/java/jdk1.7.0/bin/../jre/lib/i386/client/libjvm.so
    eclipse.home.location=file:/home/guerra/devel/ide/indigo/eclipse/
    eclipse.launcher=/home/guerra/devel/ide/indigo/eclipse/eclipse
    eclipse.launcher.name=Eclipse
    [email protected]/../p2/
    eclipse.p2.profile=epp.package.jee
    eclipse.product=org.eclipse.epp.package.jee.product
    eclipse.startTime=1327931411385
    eclipse.vm=/usr/local/java/jdk1.7.0/bin/../jre/lib/i386/client/libjvm.so
    eclipse.vmargs=-Djava.library.path=/usr/lib/jni
    -Dosgi.requiredJavaVersion=1.5
    -XX:MaxPermSize=256m
    -Xms40m
    -Xmx512m
    -Djava.class.path=/home/guerra/devel/ide/indigo/eclipse//plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
    equinox.use.ds=true
    file.encoding=UTF-8
    file.encoding.pkg=sun.io
    file.separator=/
    java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment
    java.awt.printerjob=sun.print.PSPrinterJob
    java.class.path=/home/guerra/devel/ide/indigo/eclipse//plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
    java.class.version=51.0
    java.endorsed.dirs=/usr/local/java/jdk1.7.0/jre/lib/endorsed
    java.ext.dirs=/usr/local/java/jdk1.7.0/jre/lib/ext:/usr/java/packages/lib/ext
    java.home=/usr/local/java/jdk1.7.0/jre
    java.io.tmpdir=/tmp
    java.library.path=/usr/lib/jni
    java.runtime.name=Java(TM) SE Runtime Environment
    java.runtime.version=1.7.0-b147
    java.specification.name=Java Platform API Specification
    java.specification.vendor=Oracle Corporation
    java.specification.version=1.7
    java.vendor=Oracle Corporation
    java.vendor.url=http://java.oracle.com/
    java.vendor.url.bug=http://bugreport.sun.com/bugreport/
    java.version=1.7.0
    java.vm.info=mixed mode
    java.vm.name=Java HotSpot(TM) Client VM
    java.vm.specification.name=Java Virtual Machine Specification
    java.vm.specification.vendor=Oracle Corporation
    java.vm.specification.version=1.7
    java.vm.vendor=Oracle Corporation
    java.vm.version=21.0-b17
    line.separator=
    org.apache.commons.logging.Log=org.apache.commons.logging.impl.NoOpLog
    org.eclipse.equinox.launcher.splash.location=/home/guerra/devel/ide/indigo/eclipse//plugins/org.eclipse.platform_3.7.1.v201109091335/splash.bmp
    org.eclipse.equinox.simpleconfigurator.configUrl=file:org.eclipse.equinox.simpleconfigurator/bundles.info
    org.eclipse.update.reconcile=false
    org.osgi.framework.executionenvironment=OSGi/Minimum-1.0,OSGi/Minimum-1.1,OSGi/Minimum-1.2,JRE-1.1,J2SE-1.2,J2SE-1.3,J2SE-1.4,J2SE-1.5,JavaSE-1.6,JavaSE-1.7
    org.osgi.framework.language=en
    org.osgi.framework.os.name=Linux
    org.osgi.framework.os.version=2.6.35
    org.osgi.framework.processor=x86
    org.osgi.framework.system.capabilities=osgi.ee; osgi.ee="OSGi/Minimum"; version:List<Version>="1.0, 1.1, 1.2",osgi.ee; osgi.ee="JavaSE"; version:List<Version>="1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7"
    org.osgi.framework.system.packages=javax.accessibility,javax.activation,javax.activity,javax.annotation,javax.annotation.processing,javax.crypto,javax.crypto.interfaces,javax.crypto.spec,javax.imageio,javax.imageio.event,javax.imageio.metadata,javax.imageio.plugins.bmp,javax.imageio.plugins.jpeg,javax.imageio.spi,javax.imageio.stream,javax.jws,javax.jws.soap,javax.lang.model,javax.lang.model.element,javax.lang.model.type,javax.lang.model.util,javax.management,javax.management.event,javax.management.loading,javax.management.modelmbean,javax.management.monitor,javax.management.namespace,javax.management.openmbean,javax.management.relation,javax.management.remote,javax.management.remote.rmi,javax.management.timer,javax.naming,javax.naming.directory,javax.naming.event,javax.naming.ldap,javax.naming.spi,javax.net,javax.net.ssl,javax.print,javax.print.attribute,javax.print.attribute.standard,javax.print.event,javax.rmi,javax.rmi.CORBA,javax.rmi.ssl,javax.script,javax.security.auth,javax.security.auth.callback,javax.security.auth.kerberos,javax.security.auth.login,javax.security.auth.spi,javax.security.auth.x500,javax.security.cert,javax.security.sasl,javax.sound.midi,javax.sound.midi.spi,javax.sound.sampled,javax.sound.sampled.spi,javax.sql,javax.sql.rowset,javax.sql.rowset.serial,javax.sql.rowset.spi,javax.swing,javax.swing.border,javax.swing.colorchooser,javax.swing.event,javax.swing.filechooser,javax.swing.plaf,javax.swing.plaf.basic,javax.swing.plaf.metal,javax.swing.plaf.multi,javax.swing.plaf.nimbus,javax.swing.plaf.synth,javax.swing.table,javax.swing.text,javax.swing.text.html,javax.swing.text.html.parser,javax.swing.text.rtf,javax.swing.tree,javax.swing.undo,javax.tools,javax.transaction,javax.transaction.xa,javax.xml,javax.xml.bind,javax.xml.bind.annotation,javax.xml.bind.annotation.adapters,javax.xml.bind.attachment,javax.xml.bind.helpers,javax.xml.bind.util,javax.xml.crypto,javax.xml.crypto.dom,javax.xml.crypto.dsig,javax.xml.crypto.dsig.dom,javax.xml.crypto.dsig.keyinfo,javax.xml.crypto.dsig.spec,javax.xml.datatype,javax.xml.namespace,javax.xml.parsers,javax.xml.soap,javax.xml.stream,javax.xml.stream.events,javax.xml.stream.util,javax.xml.transform,javax.xml.transform.dom,javax.xml.transform.sax,javax.xml.transform.stax,javax.xml.transform.stream,javax.xml.validation,javax.xml.ws,javax.xml.ws.handler,javax.xml.ws.handler.soap,javax.xml.ws.http,javax.xml.ws.soap,javax.xml.ws.spi,javax.xml.ws.spi.http,javax.xml.ws.wsaddressing,javax.xml.xpath,org.ietf.jgss,org.omg.CORBA,org.omg.CORBA_2_3,org.omg.CORBA_2_3.portable,org.omg.CORBA.DynAnyPackage,org.omg.CORBA.ORBPackage,org.omg.CORBA.portable,org.omg.CORBA.TypeCodePackage,org.omg.CosNaming,org.omg.CosNaming.NamingContextExtPackage,org.omg.CosNaming.NamingContextPackage,org.omg.Dynamic,org.omg.DynamicAny,org.omg.DynamicAny.DynAnyFactoryPackage,org.omg.DynamicAny.DynAnyPackage,org.omg.IOP,org.omg.IOP.CodecFactoryPackage,org.omg.IOP.CodecPackage,org.omg.Messaging,org.omg.PortableInterceptor,org.omg.PortableInterceptor.ORBInitInfoPackage,org.omg.PortableServer,org.omg.PortableServer.CurrentPackage,org.omg.PortableServer.POAManagerPackage,org.omg.PortableServer.POAPackage,org.omg.PortableServer.portable,org.omg.PortableServer.ServantLocatorPackage,org.omg.SendingContext,org.omg.stub.java.rmi,org.w3c.dom,org.w3c.dom.bootstrap,org.w3c.dom.css,org.w3c.dom.events,org.w3c.dom.html,org.w3c.dom.ls,org.w3c.dom.ranges,org.w3c.dom.stylesheets,org.w3c.dom.traversal,org.w3c.dom.views,org.w3c.dom.xpath,org.xml.sax,org.xml.sax.ext,org.xml.sax.helpers
    org.osgi.framework.uuid=d0405f54-494b-0011-168c-a1c3104915a9
    org.osgi.framework.vendor=Eclipse
    org.osgi.framework.version=1.6.0
    org.osgi.supports.framework.extension=true
    org.osgi.supports.framework.fragment=true
    org.osgi.supports.framework.requirebundle=true
    os.arch=i386
    os.name=Linux
    os.version=2.6.35-32-generic
    osgi.arch=x86
    osgi.bundles=reference:file:javax.transaction_1.1.1.v201105210645.jar,reference:file:org.eclipse.equinox.simpleconfigurator_1.0.200.v20110502-1955.jar@1:start
    osgi.bundles.defaultStartLevel=4
    osgi.bundlestore=/home/guerra/devel/ide/indigo/eclipse/configuration/org.eclipse.osgi/bundles
    osgi.configuration.area=file:/home/guerra/devel/ide/indigo/eclipse/configuration/
    osgi.framework=file:/home/guerra/devel/ide/indigo/eclipse/plugins/org.eclipse.osgi_3.7.1.R37x_v20110808-1106.jar
    osgi.framework.extensions=reference:file:javax.transaction_1.1.1.v201105210645.jar
    osgi.framework.shape=jar
    osgi.framework.version=3.7.1.R37x_v20110808-1106
    osgi.frameworkClassPath=., file:/home/guerra/devel/ide/indigo/eclipse/plugins/javax.transaction_1.1.1.v201105210645.jar
    osgi.install.area=file:/home/guerra/devel/ide/indigo/eclipse/
    osgi.instance.area=file:/home/guerra/workspace/
    osgi.instance.area.default=file:/home/guerra/workspace/
    osgi.logfile=/home/guerra/workspace/.metadata/.log
    osgi.manifest.cache=/home/guerra/devel/ide/indigo/eclipse/configuration/org.eclipse.osgi/manifests
    osgi.nl=en_US
    osgi.os=linux
    osgi.requiredJavaVersion=1.5
    osgi.splashLocation=/home/guerra/devel/ide/indigo/eclipse//plugins/org.eclipse.platform_3.7.1.v201109091335/splash.bmp
    osgi.splashPath=platform:/base/plugins/org.eclipse.platform
    osgi.syspath=/home/guerra/devel/ide/indigo/eclipse/plugins
    osgi.tracefile=/home/guerra/workspace/.metadata/trace.log
    osgi.ws=gtk
    path.separator=:
    sun.arch.data.model=32
    sun.boot.class.path=/usr/local/java/jdk1.7.0/jre/lib/resources.jar:/usr/local/java/jdk1.7.0/jre/lib/rt.jar:/usr/local/java/jdk1.7.0/jre/lib/sunrsasign.jar:/usr/local/java/jdk1.7.0/jre/lib/jsse.jar:/usr/local/java/jdk1.7.0/jre/lib/jce.jar:/usr/local/java/jdk1.7.0/jre/lib/charsets.jar:/usr/local/java/jdk1.7.0/jre/classes
    sun.boot.library.path=/usr/local/java/jdk1.7.0/jre/lib/i386
    sun.cpu.endian=little
    sun.cpu.isalist=
    sun.desktop=gnome
    sun.io.unicode.encoding=UnicodeLittle
    sun.jnu.encoding=UTF-8
    sun.management.compiler=HotSpot Client Compiler
    sun.os.patch.level=unknown
    user.country=US
    user.dir=/home/guerra
    user.home=/home/guerra
    user.language=en
    user.name=guerra
    user.timezone=Atlantic/Canary
    *** Features:
    com.collabnet.subversion.merge.feature (2.2.4) "CollabNet Subversion Merge Client"
    oracle.eclipse.tools.indigo.common (2.0.0.201112072225) "Oracle Common Tools"
    oracle.eclipse.tools.indigo.doc.javaee6 (1.0.0.201111040904) "Java EE 6 Documentation"
    oracle.eclipse.tools.indigo.glassfish (2.0.0.201111040904) "Oracle GlassFish Server Tools"
    oracle.eclipse.tools.indigo.webtier (2.0.0.201112072225) "Oracle Web Tier Tools"
    org.eclipse.cvs (1.3.100.v20110520-0800-7B78FHk8sF7BB7VAH5AYC5) "Eclipse CVS Client"
    org.eclipse.datatools.common.doc.user (1.9.1.v201108301820-26-311A16321A3557) "Data Tools Platform User Documentation"
    org.eclipse.datatools.connectivity.doc.user (1.9.1.v201108301820-37D-7733L3D753L7BBF) "Data Tools Platform Connectivity User Documentation"
    org.eclipse.datatools.connectivity.feature (1.9.1.v201108301820-7C7e8mEt1_wmuQjYnXQ6Zj5dM17) "Data Tools Platform Connectivity Plug-in"
    org.eclipse.datatools.connectivity.oda.designer.core.feature (1.9.1.v201108301820-7B7C7DCcNBGNChHSFaYT) "DTP ODA Designer UI Framework Plug-in"
    org.eclipse.datatools.connectivity.oda.designer.feature (1.9.1.v201108301820-4117w312219371456) "DTP ODA Designer UI Framework Plug-in"
    org.eclipse.datatools.connectivity.oda.feature (1.9.1.v201108301820-7H7C7ICcNBHHBnJWDjSd) "DTP Open Data Access"
    org.eclipse.datatools.doc.user (1.9.1.v201108301820-47C08w95ENAK6AFDFK7) "Data Tool Platform User Documentation"
    org.eclipse.datatools.enablement.apache.derby.feature (1.9.1.v201108301820-77788gBmKDOGMhKwJ4Rn7QBR) "High-level Sybase Enablement Plug-in"
    org.eclipse.datatools.enablement.feature (1.9.1.v201108301820-7J9B7FBWwVN7-2z-kZU_tJy1aR1t) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.hsqldb.feature (1.9.1.v201108301820-67D1AqGBKNKdIlGz0GU7QBR) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.ibm.feature (1.9.1.v201108301820-7F47SFC7sRbvSkkxaPvW) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.ingres.feature (1.9.1.v201108301820-540AkF78Z7UCRAQDB) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.jdbc.feature (1.9.1.v201108301820-4-29oB56N5N7L6PAQ) "High-level Sybase Enablement Plug-in"
    org.eclipse.datatools.enablement.jdt.feature (1.9.1.v201108301820-2-07w31211518181A) "Data Tools Platform Connectivity JDT Extension Plug-in"
    org.eclipse.datatools.enablement.msft.feature (1.9.1.v201108301820-542AkF79P7QCP9SDB) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.mysql.feature (1.9.1.v201108301820-546AkF78Z7Y9NBZ9A) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.oda.designer.feature (1.9.1.v201108301820-3328s73553C655B63) "Eclipse Data Tools Platform XML ODA Designer"
    org.eclipse.datatools.enablement.oda.feature (1.9.1.v201108301820-7A7T78DZRDKGEeHnGlLP) "Eclipse Data Tools Platform XML ODA Runtime Driver"
    org.eclipse.datatools.enablement.oracle.feature (1.9.1.v201108301820-548dAkF79Q7RAN9UFJ) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.postgresql.feature (1.9.1.v201108301820-542AkF77g7V9N9e77) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.sap.feature (1.9.1.v201108301820-540AkF77g7V9N9e77) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.sqlite.feature (1.9.1.v201108301820-541AkF79P7N8NAQ77) "Eclipse Data Tools Platform Enablement"
    org.eclipse.datatools.enablement.sybase.feature (1.9.1.v201108301820-7E45F9NiNZVR6a1PMVn) "High-level Sybase Enablement Plug-in"
    org.eclipse.datatools.intro (1.9.1.v201108301820-26-7w312116392911) "Eclipse Data Tools Platform Intro Plug-in"
    org.eclipse.datatools.modelbase.feature (1.9.1.v201108301820-77078CcNBHCBYKYEbNV) "Eclipse Data Tools Platform SQLModel Plug-in"
    org.eclipse.datatools.sqldevtools.ddlgen.feature (1.9.1.v201108301820-7A-3F7RZHLz-Hz-OlPz0Qf) "Eclipse Data Tools Platform FE UI Plug-in"
    org.eclipse.datatools.sqldevtools.feature (1.9.1.v201108301820-7N847CFDsn0VdrPUJvPUshDWIPJ0) "Eclipse Data Tools Platform SQL Tools Common UI Plug-in"
    org.eclipse.datatools.sqldevtools.parsers.feature (1.9.1.v201108301820-622BgJ9CR9XFcEWLP) "Eclipse Data Tools Platform SQL Parser Plugin"
    org.eclipse.datatools.sqltools.doc.user (1.9.1.v201108301820-37D-7733L3D753L7BBF) "Data Tools Platform SQL Tools User Documentation"
    org.eclipse.draw2d (3.7.1.v20110830-1143-4607w3122194102254) "Graphical Editing Framework Draw2d"
    org.eclipse.emf (2.7.1.v20110913-1526) "EMF - Eclipse Modeling Framework Runtime and Tools"
    org.eclipse.emf.codegen (2.7.0.v20110913-1156) "EMF Code Generation"
    org.eclipse.emf.codegen.ecore (2.7.0.v20110913-1156) "EMF Ecore Code Generator"
    org.eclipse.emf.codegen.ecore.ui (2.7.0.v20110913-1156) "EMF Ecore Code Generator UI"
    org.eclipse.emf.codegen.ui (2.7.0.v20110913-1156) "EMF Code Generation UI"
    org.eclipse.emf.common (2.7.0.v20110912-0920) "EMF Common"
    org.eclipse.emf.common.ui (2.7.0.v20110913-1156) "EMF Common UI"
    org.eclipse.emf.converter (2.7.0.v20110913-1156) "EMF Model Converter"
    org.eclipse.emf.databinding (1.2.0.v20110913-1156) "EMF Data Binding"
    org.eclipse.emf.databinding.edit (1.2.0.v20110913-1156) "EMF Edit Data Binding"
    org.eclipse.emf.ecore (2.7.1.v20110912-0920) "EMF Ecore"
    org.eclipse.emf.ecore.edit (2.7.0.v20110913-1156) "EMF Ecore Edit"
    org.eclipse.emf.ecore.editor (2.7.0.v20110913-1156) "EMF Sample Ecore Editor"
    org.eclipse.emf.edit (2.7.1.v20110913-1526) "EMF Edit"
    org.eclipse.emf.edit.ui (2.7.0.v20110913-1156) "EMF Edit UI"
    org.eclipse.emf.mapping (2.7.0.v20110913-1156) "EMF Mapping"
    org.eclipse.emf.mapping.ecore (2.7.0.v20110913-1156) "EMF Ecore Mapping"
    org.eclipse.emf.mapping.ecore.editor (2.7.0.v20110913-1156) "EMF Ecore Mapping Editor"
    org.eclipse.emf.mapping.ui (2.7.0.v20110913-1156) "EMF Mapping UI"
    org.eclipse.epp.mpc (1.1.1.I20110907-0947) "Marketplace Client"
    org.eclipse.epp.package.jee.feature (1.4.1.20110909-1818) "Java EE IDE"
    org.eclipse.gef (3.7.1.v20110830-1143-777D181B3Bz06C853D8863365) "Graphical Editing Framework GEF"
    org.eclipse.help (1.3.0.v20110327-7i7uFFkFFp7gNobOpNgKo0) "Help System Base"
    org.eclipse.jdt (3.7.1.r371_v20110810-0800-7z8gFcoFMLfTabvKsR5Qm9rBGEBK) "Eclipse Java Development Tools"
    org.eclipse.jpt.common.eclipselink.feature (1.0.1.v201108080010-3-08s73553F3G3343) "Dali Java Persistence Tools - EclipseLink Common"
    org.eclipse.jpt.common.feature (1.0.1.v201108080010-6-0AkF7BB7S9N7788) "Dali Java Persistence Tools - Common"
    org.eclipse.jpt.dbws.eclipselink.feature (1.0.1.v201108303011-797B3CcNBHGCfDZAwHJ375) "Dali Java Persistence Tools - EclipseLink DBWS Support"
    org.eclipse.jpt.jaxb.eclipselink.feature (1.0.1.v201108303011-7740BgJ9EE9ZC_8z0A9132) "Dali Java Persistence Tools - EclipseLink MOXy (JAXB) Support"
    org.eclipse.jpt.jaxb.feature (1.0.1.v201108080010-508aAkF7BB7U8Q779A) "Dali Java Persistence Tools - JAXB Support"
    org.eclipse.jpt.jpa.eclipselink.feature (3.0.1.v201108303011-7J7F78F7RZHQPJBNCKbSR7FB) "Dali Java Persistence Tools - EclipseLink JPA Support"
    org.eclipse.jpt.jpa.feature (3.0.1.v201108163011-7R7F7CFC7sRdiShWvWQYU375) "Dali Java Persistence Tools - JPA Support"
    org.eclipse.jst.common.fproj.enablement.jdt (3.3.0.v201102200555-377DF8s73543E5I5768) "Eclipse Faceted Project Framework JDT Enablement"
    org.eclipse.jst.enterprise_ui.feature (3.3.1.v201107072200-7b7II1PFSK2WIlPwJBmNz-VWwVsTn) "Eclipse Java EE Developer Tools"
    org.eclipse.jst.ws.axis2tools.feature (1.1.200.v201103022333-78-FF0DZRDKDDePSKwHj) "Axis2 Tools"
    org.eclipse.jst.ws.cxf.feature (1.0.100.v201105171845-7H77DRFAKlZgjHCaHg65uE6I6I) "CXF Web Services Core"
    org.eclipse.jst.ws.jaxws.feature (1.1.0.v201105171845-7E78BsF8NcJSWKvN1Rjcv) "JAX-WS Tools Core"
    org.eclipse.mylyn_feature (3.6.4.v20111118-0100) "Mylyn"
    org.eclipse.mylyn.bugzilla_feature (3.6.2.v20110908-0706) "Mylyn"
    org.eclipse.mylyn.context_feature (3.6.2.v20110908-0706) "Mylyn"
    org.eclipse.mylyn.ide_feature (3.6.2.v20110908-0706) "Mylyn"
    org.eclipse.mylyn.java_feature (3.6.2.v20110908-0706) "Mylyn"
    org.eclipse.mylyn.team_feature (3.6.2.v20110908-0706) "Mylyn"
    org.eclipse.mylyn.trac_feature (3.6.4.v20111118-0100) "Mylyn"
    org.eclipse.mylyn.wikitext_feature (1.5.2.v20110908-0706) "Mylyn"
    org.eclipse.pde (3.7.1.r37x_v20110810-0800-7b7qFVtFEx2XnmZ4jlM5mjM) "PDE"
    org.eclipse.platform (3.7.1.r37x_v20110729-9gF7UHOxFtniV7mI3T556iZN9AU8bEZ1lHMcVK) "Eclipse Platform"
    org.eclipse.rcp (3.7.1.r37x_v20110729-9DB5FmNFnFLSFCtLxnRfMqt15A4A) "Eclipse RCP"
    org.eclipse.rse (3.3.1.R33x_v201109141647-7L7CFGG8wqio8rz0qYtkPgn8qWd4) "Remote System Explorer End-User Runtime"
    org.eclipse.rse.core (3.3.1.R33x_v201109141647-7a7JFZ3F8Fz0vz03_qRujbr0z0Nu) "RSE Core"
    org.eclipse.rse.dstore (3.3.1.R33x_v201109141647-7L78FRAD2YR70wUHbQUplQ8LFC) "RSE DStore Services"
    org.eclipse.rse.ftp (3.0.301.R33x_v201109141647-782F8O9KC92gz097E9EKF23225) "RSE FTP Service"
    org.eclipse.rse.local (2.1.300.v201103142315-7B4FKsBgJ9EE9ICQIFYT) "RSE Local Services"
    org.eclipse.rse.ssh (3.0.301.R33x_v201109141647-7A3F9xAGGB5k0C7KEATN92641) "RSE SSH Services"
    org.eclipse.rse.telnet (2.2.200.v201106011538-775F8NAkF7BB7B9NEIPP) "RSE Telnet Service"
    org.eclipse.rse.terminals (1.1.1.R33x_v201109141647-771Bh9uD7HbBF3u7DNO3293A3752) "RSE Terminals UI"
    org.eclipse.rse.useractions (1.1.300.v201103142315-31F8N8s7355353B75DD) "Remote System Explorer User Actions"
    org.eclipse.sapphire (0.4.0.201112010656) "Sapphire (Incubation)"
    org.eclipse.sapphire.java (0.4.0.201112010656) "Sapphire Java Support (Incubation)"
    org.eclipse.sapphire.java.jdt (0.4.0.201112010656) "Sapphire Java Developer Tools Support (Incubation)"
    org.eclipse.sapphire.modeling.xml (0.4.0.201112010656) "Sapphire XML Support (Incubation)"
    org.eclipse.sapphire.osgi (0.4.0.201112010656) "Sapphire OSGi Support (Incubation)"
    org.eclipse.sapphire.platform (0.4.0.201112010656) "Sapphire Eclipse Platform Support (Incubation)"
    org.eclipse.sapphire.ui (0.4.0.201112010656) "Sapphire User Interface (Incubation)"
    org.eclipse.sapphire.ui.swt.graphiti (0.4.0.201112010656) "Sapphire Graphiti Renderer (Incubation)"
    org.eclipse.sapphire.ui.swt.xml.editor (0.4.0.201112010656) "Sapphire XML Editor Support (Incubation)"
    org.eclipse.tm.terminal (3.1.1.R33x_v201106281309-4007S44yaw312218292641) "Target Management Terminal Widget"
    org.eclipse.tm.terminal.ssh (2.1.0.v201103142315-30-7w312212153266) "Target Management Terminal SSH Connector"
    org.eclipse.tm.terminal.telnet (2.1.0.v201103142315-30-7w312213121A22) "Target Management Terminal Telnet Connector"
    org.eclipse.tm.terminal.view (2.2.0.v201103142315-31-7w312214253426) "Target Management Terminal View"
    org.eclipse.wst.common.fproj (3.3.0.v201102150115-377DF8s7355397B4B9B) "Eclipse Faceted Project Framework"
    org.eclipse.wst.jsdt.feature (1.3.1.v201108102009-7F78FXRFBBoPbXRPcHfz-uy) "Eclipse JavaScript Development Tools"
    org.eclipse.wst.web_ui.feature (3.3.1.v201107072200-7O7IFhREMiB5vNoYqf01XHTvUndyz-yx-9kUyXXL) "Eclipse Web Developer Tools"
    org.eclipse.wst.xml_ui.feature (3.3.1.v201108102009-7H7EFZ3DxumTlaI6nheRdHo2p1KaDIL1Uz-S3PL) "Eclipse XML Editors and Tools"
    org.eclipse.wst.xml.xpath2.processor.feature (2.0.0.v201103310043-7A7J-CcNBGOCUIWFYMf) "Eclipse XPath 2 Developers Tools"
    org.eclipse.wst.xsl.feature (1.3.1.v201109012200-7T7YFRTFIqUoIrvbEtBlSIJXGZNg) "Eclipse XSL Developer Tools"
    org.tigris.subversion.clientadapter.feature (1.6.12) "Subversion Client Adapter"
    org.tigris.subversion.clientadapter.javahl.feature (1.6.17) "Subversion JavaHL"
    org.tigris.subversion.subclipse (1.6.18) "SVN Team Provider Core"
    org.tigris.subversion.subclipse.graph.feature (1.0.9) "Subversion Revision Graph"
    org.tigris.subversion.subclipse.mylyn (3.0.0) "Subclipse Integration for Mylyn 3.x"
    *** Plug-in Registry:
    com.collabnet.subversion.merge (2.2.4) "CollabNet Subversion Merge Client" [Active]
    com.ibm.icu (4.4.2.v20110208) "International Components for Unicode for Java (ICU4J)" [Active]
    com.jcraft.jsch (0.1.41.v201101211617) "JSch" [Resolved]
    com.springsource.javax.jms (1.1.0) "Java Messaging System API" [Resolved]
    com.sun.syndication (0.9.0.v200803061811) "Rss and atOM utilitiEs (ROME)" [Resolved]
    java_cup.runtime (0.10.0.v201005080400) "Java Cup" [Resolved]
    javax.activation (1.1.0.v201105071233) "Apache Geronimo Activation Plug-in" [Resolved]
    javax.jws (2.0.0.v201005080400) "Web Services Metadata" [Resolved]
    javax.mail (1.4.0.v201005080615) "Javax Mail Plug-in" [Resolved]
    javax.persistence (2.0.3.v201010191057) "Java Persistence API 2.0" [Resolved]
    javax.servlet (2.5.0.v201103041518) "Servlet API Bundle" [Resolved]
    javax.servlet.jsp (2.0.0.v201101211617) "Java Server Pages API Bundle" [Resolved]
    javax.transaction (1.1.1.v201105210645) "geronimo Javax Transaction API 1.1.1 spec" [Resolved]
    javax.wsdl (1.5.1.v201012040544) "WSDL4J" [Resolved]
    javax.wsdl (1.6.2.v201012040545) "WSDL4J" [Resolved]
    javax.xml (1.3.4.v201005080400) "JAXP XML" [Resolved]
    javax.xml.bind (2.1.9.v201005080401) "XML Binding for Java" [Resolved]
    javax.xml.rpc (1.1.0.v201005080400) "JAX-RPC" [Resolved]
    javax.xml.soap (1.2.0.v201005080501) "SAAJ" [Resolved]
    javax.xml.stream (1.0.1.v201004272200) "Java XML Streaming API" [Resolved]
    javax.xml.ws (2.1.0.v200902101523) "Java API for XML Web Services (JAX-WS)" [Resolved]
    net.sourceforge.lpg.lpgjavaruntime (1.1.0.v201004271650) "SourceForge LPG" [Resolved]
    oracle.eclipse.tools.application.common.services (4.2.0.201112072225) "Oracle Application Tools Common Services" [Active]
    oracle.eclipse.tools.common (4.2.0.201112072225) "Oracle Common Tools" [Active]
    oracle.eclipse.tools.common.doc (4.2.0.201112072225) "Oracle Enterprise Tools for Eclipse Documentation" [Active]
    oracle.eclipse.tools.common.services (4.2.0.201112072225) "Oracle Common Services" [Active]
    oracle.eclipse.tools.common.services.ui (4.2.0.201112072225) "Oracle Common Services UI" [Active]
    oracle.eclipse.tools.common.templating (4.2.0.201112072225) "File Templates Plugin" [Starting]
    oracle.eclipse.tools.common.ui (4.2.0.201112072225) "Oracle Common Tools UI" [Active]
    oracle.eclipse.tools.common.upgrade (4.2.0.201112072225) "Oracle Upgrade Framework" [Active]
    oracle.eclipse.tools.doc.javaee5 (1.0.0.201111040904) "Java EE 5 Documentation" [Starting]
    oracle.eclipse.tools.doc.javaee6 (1.0.0.201111040904) "Java EE 6 Documentation" [Starting]
    oracle.eclipse.tools.envcheck (4.2.0.201112072225) "Oracle Eclipse Tools Environment Checker" [Active]
    oracle.eclipse.tools.glassfish (4.2.0.201111040904) "Oracle GlassFish Server Tools" [Active]
    oracle.eclipse.tools.sapphire.modeling.legacy (4.2.0.201112072225) "Oracle Sapphire Modeling Framework (Legacy)" [Starting]
    oracle.eclipse.tools.sapphire.ui.legacy (4.2.0.201112072225) "Oracle Sapphire Framework UI (Legacy)" [Starting]
    oracle.eclipse.tools.weblogic (4.2.0.201112072225) "Oracle WebLogic Server Tools" [Active]
    oracle.eclipse.tools.webtier (4.2.0.201112072225) "Oracle Web Tier Tools" [Starting]
    oracle.eclipse.tools.webtier.common.services (4.2.0.201112072225) "Oracle Web Tier Tools Common Services" [Active]
    oracle.eclipse.tools.webtier.doc (4.2.0.201112072225) "Oracle Web Tier Tools Documentation" [Starting]
    oracle.eclipse.tools.webtier.html (4.2.0.201112072225) "Oracle Web Tier Tools HTML" [Starting]
    oracle.eclipse.tools.webtier.html.ui (4.2.0.201112072225) "Oracle Web Tier Tools HTML UI" [Starting]
    oracle.eclipse.tools.webtier.javawebapp (4.2.0.201112072225) "Oracle Web Tier Tools Java Web App" [Active]
    oracle.eclipse.tools.webtier.jsf (4.2.0.201112072225) "Oracle Web Tier Tools JSF" [Active]
    oracle.eclipse.tools.webtier.jsf.ui (4.2.0.201112072225) "Oracle Web Tier Tools JSF UI" [Active]
    oracle.eclipse.tools.webtier.jsp (4.2.0.201112072225) "Oracle Web Tier Tools JSP" [Active]
    oracle.eclipse.tools.webtier.jsp.ui (4.2.0.201112072225) "Oracle Web Tier Tools JSP UI" [Active]
    oracle.eclipse.tools.webtier.jstl (4.2.0.201112072225) "Oracle Web Tier Tools JSTL" [Active]
    oracle.eclipse.tools.webtier.jstl.ui (4.2.0.201112072225) "Oracle Web Tier Tools JSTL UI" [Starting]
    oracle.eclipse.tools.webtier.struts (4.2.0.201112072225) "Oracle Web Tier Tools Apache Struts" [Starting]
    oracle.eclipse.tools.webtier.struts.ui (4.2.0.201112072225) "Oracle Web Tier Tools Apache Struts UI" [Starting]
    oracle.eclipse.tools.webtier.trinidad (4.2.0.201112072225) "Oracle Web Tier Tools Apache Trinidad" [Starting]
    oracle.eclipse.tools.webtier.trinidad.ui (4.2.0.201112072225) "Oracle Web Tier Tools Apache Trinidad UI" [Starting]
    oracle.eclipse.tools.webtier.ui (4.2.0.201112072225) "Oracle Web Tier Tools UI" [Active]
    oracle.eclipse.tools.xml.edit.ui (4.2.0.201112072225) "Oracle XML Editing" [Starting]
    oracle.eclipse.tools.xml.model (4.2.0.201112072225) "Oracle XML TLEI Model" [Active]
    oracle.eclipse.tools.xmlbeans.library.v21 (4.2.0.201112072225) "Apache XMLBeans v2.1" [Starting]
    oracle.eclipse.tools.xmlbeans.library.v22 (4.2.0.201112072225) "Apache XMLBeans v2.2" [Starting]
    oracle.eclipse.tools.xmlbeans.library.v23 (4.2.0.201112072225) "Apache XMLBeans v2.3" [Starting]
    org.apache.ant (1.8.2.v20110505-1300) "Apache Ant" [Resolved]
    org.apache.axis (1.4.0.v201005080400) "Apache Web Services" [Resolved]
    org.apache.bcel (5.2.0.v201005080400) "Apache BCEL" [Resolved]
    org.apache.commons.codec (1.3.0.v201101211617) "Apache Commons Codec Plug-in" [Resolved]
    org.apache.commons.collections (3.2.0.v201005080500) "Apache Commons Collections" [Resolved]
    org.apache.commons.discovery (0.2.0.v201004190315) "Jakarta-Commons Discovery" [Resolved]
    org.apache.commons.el (1.0.0.v201101211617) "Apache Commons JSP 2.0 Expression Language Interpreter" [Resolved]
    org.apache.commons.httpclient (3.1.0.v201012070820) "Apache Commons Httpclient" [Resolved]
    org.apache.commons.lang (2.1.0.v201005080500) "Apache Jakarta Commons L

    Hi,
    could you let us know what version of OEPE you were running prior to the upgrade along with the Eclipse version ? Also was the previous installation a full OEPE install or was it installed via the update site ?
    thanks
    Raj

  • @SUN: Sun VirtualBox 3.1 + VM "Teleportation" ... for VDI 3.1 too?

    I just checked my Facebook account and there I got the announcement from Sun that VirtualBox 3.1 was released today and that it has an exciting new feature: VM "Teleportation". So running VM's can be live migrated without interruption between VirtualBox servers. Awesome!
    BUT:
    Will we get a special VDI version too? If anything then "Teleportation" is a must-have feature for Sun VDI. Will there be a patch that adds this new VirtualBox version to VDI ...?

    Just simply load balancing? Or something more?I often encounter potential customers who'd be interested to buy Sun VDI but they shy away from such thoughts because they realise that the VMware ESX license costs they would have to spend money for will be killing them financially. And they don't see VirtualBox as a "good enough" alternative: It's a "toy", it can't do live migration (e.g. with VMware if they wanted that feature one day they could simply license it and "unlock" it), it's not a bare metal hypervisor ....
    So now I could at least counter the point about VirtualBox not being able to do live migrations because now it can do that and there are no additional licenses to pay and no features to unlock. The feature is there from start. So that's good.
    But the other issues remain: it's not "bare metal". It would have been nice to have some sort of true "VirtualBox Server" or "VirtualBox for VDI -- Bare Metal Edition". Sun had such a product in the pipelines: "Sun xVM Server" ... but this product was killed after EA #2. Silly move, IMHO. It would have been wiser to finish this product and then have Sun VDI support it as virtualisation backend as well.
    Talking of which: Any chance that Sun VDI might one day support the various XEN-based products that exist? If I am not mistaken Sun's "xVM" hypervisor in Solaris/OpenSolaris is in principle just another XEN implementation too. And then there is "Oracle VM" .... so in light of the merger with Oracle I'd say it would make sense if Solaris xVM and Oracle VM/Xen were supported as well. I find it odd that XEN-based products which are widely used in certain circles (e.g. Universities) are being omitted but that there is support for Microsoft Hyper-V which is so brand new and still so lacking in the features department that it is hardly used by anyone except by some paid "early adopters" ...

Maybe you are looking for