Diff between odi 10g and 11g

Hi,
Can some one reply the important and main differences between ODI 10 and 11g.Urgent!!!
Thanks,
Pop...

quickly :
* new user interface : ODI studio with new functionnalites (open object on tabs, save button, cancel button...)
* new object : load plan
* new agent architecture : JEE agent
* integration with weblogic ; ODI console instead of Metadata Navigator
* support of union/intersect/... in interfaces
* news KM and index improvment
* support of "derivated table" in yellow interface (ie : use sub request instead of creating the yellow table)
* lookup functionnality for interface
* simulation of code without executing the interface
* support of tables partitions
* global scope KM
* best tool for export/import

Similar Messages

  • Diff between oracle 10g and 11g

    Can any one could tell me what is the main diff between oracle 10g and 11g ?
    Thanks in Advance
    Venkat

    Hi,
    You can read
    http://www.oracle.com/technetwork/articles/sql/index-082320.html
    http://www.oracle.com/technetwork/articles/sql/index-099021.html
    Anand

  • Important differences between oracle 10g and 11g

    Hi friends, can anyone tell me (pointwise) what are the major (and minor) differences between Oracle 10g and 11g.
    Please point me to some documents if possible.
    Thanks in advance

    The name of the link says it all: "top_features."
    In short it is Oracle's list of what they have for marketing and sales reasons designated "top features."
    It is not intended to be, and is not, a complete list of features. Often the features Oracle does not
    talk about are the most important.
    Let me give you some examples. I have never seen Oracle announce DBMS_XPLAN as a new feature
    yet you should not run an explain plan without it. Neither have I ever seen Oracle announce the new
    NO_DATA_NEEDED predefined exception. I have listed literally hundreds of new features you will not
    find in Oracle's new features docs.
    I did a presentation at OpenWorld this year as part of the unconference titled "New Features in
    Database 11gR2 that Oracle will not announce." It was easy to prepare a one hour presentation with
    little fear of being proved incorrect. As I turned out only one of the features I presented was mentioned
    by Oracle.
    You can find the presentation slides here:
    http://www.morganslibrary.org/pres/oow09_ucnf.pdf

  • Diffrence between OBIEE 10g and 11g Architecture

    Hi
    Please help me by providing either the differences between the OBIEE 10g and 11g Architecture or a pointer/link.
    Thanks

    Hi,
    There are some!!
    Check here;
    http://www.rittmanmead.com/obiee11g/
    http://www.biconsultinggroup.com/images/VideoAlbum/WhitePapersFAQ10-31-10.pdf
    http://blogs.oracle.com/robreynolds/2010/12/security_in_obiee_11g_part_1.html
    http://blogs.oracle.com/robreynolds/2010/12/security_in_obiee_11g_part_2.html
    This will give an indication of all the changes.
    Cheers,
    Daan Bakboord
    http://obibb.wordpress.com

  • Issue with materialized view and fast refresh between Oracle 10g and 11g

    Hi all,
    I've hit a problem when trying to create a fast-refreshable materialized view.
    I've got two databases, one 10.2.0.10, another 11.2.0.1.0, running on 32-bit Windows. Both are enterprise edition, and I'm trying to pull data from the 10g one into the 11g one. I can happily query across the database link from 11g to 10g, and can use complete refresh with no problem except the time it takes.
    On the 10g side, I've got tables with primary keys and m.v. logs created, the logs being of this form ...
    CREATE MATERIALIZED VIEW LOG ON table WITH PRIMARY KEY INCLUDING NEW VALUES
    On the 11g side, when I try to create an m.v. against that ...
    CREATE MATERIALIZED VIEW mv_table REFRESH FAST WITH PRIMARY KEY AS SELECT col1, col2 FROM table@dblink;
    ... I get an ORA-12028 error (materialized view type is not supported by master site).
    After running the EXPLAIN_MVIEW procedure it shows this;
    REFRESH_FAST_AFTER_INSERT not supported for this type mv by Oracle version at master site
    A colleague has managed to build a fast-refresh m.v. from the same source database, but pulling to a different one than I'm using; his target is also 10g, like the (common) source, so I've no idea why I'm getting the 'not supported' message whilst he isn't.
    I've been able, on previous projects, to do exactly what I'm trying to achieve but on those someone with more knowledge than me has configured the database!
    I'm now stumped. I'm also no DBA but despite that it's been left to me to install the new 11g database on the 32-bit Windows server from scratch, so there are probably a couple of things I'm missing. It's probably something really obvious but I don't really know where to look now.
    If anyone can give me any pointers at all, I'd be really grateful. This question is also duplicated in the Replication forum but hasn't had any replies as yet, so I'm reproducing it here in hope!
    Thanks in advance,
    Steve

    Hi Steve,
    You should have a look at metalink, Doc ID 1059547.1
    If that does not help, there may be something else in Mater note ID 1353040.1
    Best regards
    Peter

  • Validate_layer_with_context -- differences between version 10g and 11g

    I have a spatial table that validates without issues under v10.2.0.4.0. This table was replicated to a new database running v11.2.0.2.0. Under this environment, the validation reports an "ORA-13366: invalid combination of interior exterior rings" issue. Has anyone else experienced this situation and does anyone have an explanation?
    Thanks,
    David

    Hi David,
    Not sure if I actually solved your issue. Any incorrect ring rotation has always thrown ORA-13367 as long as I have been around, 10g or 11g. In 10g you should never have seen true if any of your rings were originally backwards. And indeed its a big polygon but for example I have been doing some testing with "uber" polygons and just the other night was running SIMPLIFY on a polygon with 1.2 million vertices and it took a while (I went to bed) but in the morning it was done.
    How are you testing ring rotation? I put a quickie function below. Are you doing things similarly? TO_CURRENT will actually reallocate rings from inner to outer if one is inside the other. But as part of the rearranging will always correct the ring orientation. In your case that seems not to have happened which is very odd. But perhaps this has something to do with the sheer number of polygons in the collection and how they interact (raw speculation). I would first try removing that particular polygon with SDO_UTIL.EXTRACT and see if there is anything squirrelly about it by itself.
    Cheers,
    Paul
    CREATE OR REPLACE FUNCTION inspect_ordinate_rotation(
       p_input       IN  MDSYS.SDO_GEOMETRY,
       p_lower_bound IN  NUMBER DEFAULT 1,
       p_upper_bound IN  NUMBER DEFAULT NULL
    ) RETURN VARCHAR2
    AS
       int_dims      PLS_INTEGER := p_input.get_dims();
       int_lb        PLS_INTEGER := p_lower_bound;
       int_ub        PLS_INTEGER := p_upper_bound;
       p_area        NUMBER;
       num_x         NUMBER;
       num_y         NUMBER;
       num_lastx     NUMBER;
       num_lasty     NUMBER;
    BEGIN
       IF int_dims IS NULL
       THEN
         int_dims := 2;
       END IF;
       IF int_ub IS NULL
       THEN
          int_ub  := p_input.SDO_ORDINATES.COUNT;
       END IF;
       IF int_lb IS NULL
       THEN
          int_lb  := 1;
       END IF;
       p_area  := 0;
       num_lastx := 0;
       num_lasty := 0;
       WHILE int_lb <= int_ub
       LOOP
          num_x := p_input.SDO_ORDINATES(int_lb);
          num_y := p_input.SDO_ORDINATES(int_lb + 1);
          p_area := p_area + ( (num_lasty * num_x ) - ( num_lastx * num_y) );
          num_lastx := num_x;
          num_lasty := num_y;
          int_lb := int_lb + int_dims; 
       END LOOP;
       IF p_area > 0
       THEN
          RETURN 'CW';
       ELSE
          RETURN 'CCW';
       END IF;
    END inspect_ordinate_rotation;

  • Difference between OBIA 10g and 11g

    hi all
    Can anyone tell me the new modules which are added in OBIA 11g  as compared to 10g.
    Any help deeply appreciated.
    Thanks
    Bivin

    Check all 4 links from New Features for Oracle Business Intelligence Users - 11g Release 1 (11.1.1)
    If helps mark
    ~ http://cool-bi.com

  • Differences btwn 10g and 11g

    What are the main differences between ODI 10g and 11g.
    Edited by: 957852 on Feb 1, 2013 11:32 PM

    Please use the search feature:
    http://www.google.com/search?q=ODI+11g+enhancements&oq=ODI+11g+enhancements
    and look at the first result

  • Differences between Oracle Discoverer  10g and 11g .

    we would like to know if they are any differences between Oracle Discoverer 10g and 11g and any issues with 10g that are overcome in 11g.
    Please make us aware of any merits in going for 11g over 10g.
    apps version 11.5.10.2
    Regards

    Please see these links for the list of new features, bug fixes, certification, and installation of Discoverer 11g on 11i instance.
    Discoverer 11.1.1.4 Certified with E-Business Suite
    http://blogs.oracle.com/stevenChan/2011/02/discoverer_11114_ebs.html
    EBS Sysadmin Primer: Oracle BI Discoverer 11gR1
    http://blogs.oracle.com/stevenChan/2010/08/discoverer_11gr1_primer.html
    Oracle Business Intelligence Discoverer 11g
    http://www.oracle.com/technetwork/developer-tools/discoverer/overview/index.html
    Oracle Business Intelligence Discoverer 11g documentation
    http://www.oracle.com/technetwork/developer-tools/discoverer/documentation/index.html
    Thanks,
    Hussein

  • Difference Between OBIEE 10g and OBIEE 11g

    Hi everyone,
    I have a doubt when choosing two versions of OBIEE, 10g and 11g.
    Actually, is there any big difference between 10g and 11 version ?
    From the point of view of easiness finding tutorial in internet, simplicity of using the tool, and other considerations, which one is better ?
    I hope you guys could also explain with your arguments.
    Thanks

    Hi,
    Few differences..
    Architectures-
    OBIEE 11g architecture...http://www.rittmanmead.com/2010/07/09/obiee-11gr1-architecture-and-use-of-weblogic-server/
    OBIEE 10g architecture....http://gerardnico.com/wiki/dat/obiee/obiee_overview
    Features-
    New features in OBIEE11g...Re: OBIEE 11g
    http://blogs.oracle.com/robreynolds/2010/07/new_administration_features_of.html
    I have a doubt when choosing two versions of OBIEE, 10g and 11g.If you are new to OBIEE its best to start with 10g,there are lot changes in 11g.It takes time to get used to it and you many not get enough docs or material to read,may face some new issues also.
    Actually, is there any big difference between 10g and 11 version ? Yes there are some differences between them...you can see them in above links.(many things like graphs,server)
    From the point of view of easiness finding tutorial in internet, simplicity of using the tool, and other considerations, which one is better ?For sure obiee 10g as 11g is new many of them just started using it,so you may get less help on this if you face issues & may not get enough tutorial in internet and OBIEE10g is bit easy to use.
    Its best to you go for OBIEE10g,parallely you can try 11g.
    Regards,
    Srikanth
    Edited by: Srikanth Mandadi on Oct 7, 2010 11:08 AM

  • Difference between Materialised view in 10g and 11g

    Hi,
    I am beginner . I want to know the difference between Materialized view between 10g and 11g. Is there any impact if the materialized view used in 10g gets upgraded to 11g ?
    awaiting ur response.Please and Thanks

    In addition to the documentation, you might want to look at the blog of Alberto Dell'Era:
    http://www.adellera.it/blog/
    Alberto writes quite a bit about materialized views, including this important change in 11GR2:
    http://www.adellera.it/blog/2009/11/03/11gr2-materialized-view-logs-changes/

  • Difference between oracle bpm 10g and 11g

    Newbie: I am trying to understand 10g. The basic questions I have is
    1)What is the difference between 10g and 11g?
    2)What is the infrastructure & skillset needed for me to do implementation in 10g?
    3)How is migration from 10g to 11g is accomplished?
    Any resource links that would help me to get started with 10g would be appreciated.
    Chaitanya

    Hi,
    Please follow the below mentioned link to find your answer.
    Re: Main differences between oracle bpm 10.3 vs 11g
    Migration from ALBPM 5.7 to BPM 11g
    Bibhu

  • Differences between OCA 10g and OCA 11g

    Hi,
    I am currently studying the OCA 10g Administration I but I have not taken the exam yet. I am also taking the SQL Expert exam but I dont think that is version specific.
    I would like to know how different or what the differences are between the OCA 10g and 11g exams are as I fear that 10g will be out of date soon. I am considering just taking the 11g exam even though I have only studied 10g.
    I had a look at both the syllabuses and they look pretty similar and was hoping someone could add some personal notations of their experience. I suspect and hope that the major differences would come at the OCP level.
    I don't want to go to do OCP as I am only doing to obtain a good foundation for working on the functional side of financials.
    Thanks in advance.
    Luke

    differences are between the OCA 10g and 11g exams
    Different version different new features discussed. example : no ADR in the 10g, no invisible index in 10g, DRA etc.
    Syllabus maybe the same, but features is different.
    I suspect and hope that the major differences would come at the OCP level.
    OCP is deeper than OCA. mostly OCA cover all features of the Oracle, and the OCP discussed about more advanced technique like RMAN, ASM, Memory Management, etc. but again 10g and 11g have different features.
    That's why for 10g OCP who wants to upgrade become 11g OCP, has to follow 11g new features exam.
    HTH
    Edited by: HGDBA on Jan 14, 2011 1:17 PM

  • Oracle 10g and 11g diff

    Dear Frineds
    previously i am usning 10g rt now i have installed 11g
    can u tell me the exact differance between 10g and 11g
    how can i find this practilcally,
    thanks

    Arbar Mehaboob - user553581 wrote:
    how can i find this practilcally,At http://tahiti.oracle.com are a few manuals.
    At the beginning of (almost) every manual is a "What's New" section that describes the practical differences for specific features from the previous version. There is also one that provides some high level information, called the "New Features Guide" that provides some high level information about newly introduced features, but doesn't dig much into details of changed features.
    So 'practically', you as DBA or Developer need to understand which features you are using and spend some time reading the manuals to understand what has changed.
    Since Oracle has literally thousands of individual features, and since you are responsible for a subset of those in production, it might not be a bad idea to become familiar with them. ;-)

  • How to join three tables and practical difference between 10g and 11g

    I want to know with example how to outer join three different tables in Oracle.
    Also if you have any website or reference for understand syntax or performance difference between 10g and 11g then please paste a link in.thanks!!

    Hi,
    897293 wrote:
    I want to know with example how to outer join three different tables in Oracle.The 3rd table comes into the result set the same way the 2nd one did:
    FROM           table_1  t1
    LEFT OUTER JOIN      table_2  t2  ON   ...
    LEFT OUTER JOIN      table_3  t3  ON   ...The join condition(s) for t3 can reference t1, or t2, or both.
    Also if you have any website or reference for understand syntax or performance difference between 10g and 11g then please paste a link in.thanks!!The main manuals all have "What's New" sections near the beginning. For example:
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28286/wnsql.htm#sthref5
    Hoek,
    We've missed you. Welcome back!

Maybe you are looking for

  • ICloud Drive on Mac not displaying folders like on internet

    Hi, I seem to be having a problem as the iCloud Drive in the Finder is not displaying the folders that are present on the iCloud on the internet. Would really benefit from some help about this. Thanks!

  • No output when using ODA in WS Cluster

    I am trying to dynamically assemble multiple documents using the new On Demand Assmebly module in a WebSphere cluster with a load balanced cluster of web servers in front of LC. While the process calls the ODA successfully, the output document is emp

  • Removing encryption from an encrypted disk

    I purchased one of those external WD 500gb to use with my macbook pro. Using disk utility, I encrypted the whole disk. Is there a way to remove the encryption without having to move the data elsewhere first and reformatting the drive?

  • How to install Flash CS4 under Windows XP?

    When I start installing anything from CS4 package (trial version downloaded from web), installation hangs on stage where I could most likely select some options. All installers from this package hangs exactly at the same place. Does anybody know what

  • Estimation process while split valuation is active

    Hello friends Is there other configuration required when materials valuated using split valuation .. ? while estimating the cost of finish product , other  components like semi-finish materials , and raw  materials are valuated at split valuation . h