Differece between OWB and ODI

Dear All,
I would like to know how OWB is different from ODI and would appreciate any resources to understand how OWB 10g works, how to create mappings, what is OWB 10g architecute and so on.. I know how ODI works but do not have any idea how OWB works since I never worked on OWB.
I wont to learn OWB 10g.
Thanks and Regards

Hi,
This Oracle By Example link may help:
http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/10g/r2/owb/owb10gr2_obe_series/owb10g.htm

Similar Messages

  • How to decide between OWB and ODI?

    Having to decide whether to choose Oracle Data Integrator or Oracle Warehouse Builder like tool for creating a dataware house and loading data into it, what should I choose and why?
    I'm an old pl/sql developer but new on datawarehousing (I've been dealing with it for few months) and I'd like to undestand what fits better for me. It seems to me that OWB and ODI look not very different to each other, don't they?
    My Oracle vers. is 10gR2
    Thanks!

    Mark1970 wrote:
    Having to decide whether to choose Oracle Data Integrator or Oracle Warehouse Builder like tool for creating a dataware house and loading data into it, what should I choose and why?
    I'm an old pl/sql developer but new on datawarehousing (I've been dealing with it for few months) and I'd like to undestand what fits better for me. It seems to me that OWB and ODI look not very different to each other, don't they?
    My Oracle vers. is 10gR2
    Thanks!Oracle corporation's statement of direction says ODI is their strategic ETL tool and if you and investing into Oracle ETl for the 1st time then it is better to invest in ODI .
    OWB will be supported and finally OWB and ODI will get merged into a single tool.
    For a pl/sql guy like you , the code generated by OWB is easy to understand as OWB mainly generates pl/sql code ( apart from sql loader and sap abap code ) . But that should not deter you to use ODI as ODI generates mainly SQL code (plus sove native code depending upon the technology used and KM) .

  • Relation between Hyperion and ODI(Oracle Data Interagtor)

    Hi Friends,
    Now ODI became ad popular ELT Product. Companies looking ODI Developer having experience with Hyperion.
    May i know what is Hyperion and what was the relation between Hyperion and ODI.
    Regards,
    Kishore
    9676404087.

    Hi John,
    Is mandatory to know any of the hyperion products - Essbase, Planning, HFM for ODI Developer. If it is mandatory Please let me know which is good.
    --Kishore                                                                                                                                                                                                                                                                                                                                                               

  • Differece between ArrayList and LinkedList

    Differece between ArrayList and LinkedList

    An array list is implemented as an array. A LinkedList is implemented as a series of separate nodes linked by references.
    Although they both support the same methods, that has performance implications. Linked lists are better at inserting and deleting arbitary elements, but are slow to reference an element by index.

  • Comparison between OWB and PL/SQL development

    Hello,
    I am preparaing a presentation comapring development in OWB and development in PL/SQL.
    Can anybody know the time saved by using OWB (ratio, percentage...) ?
    Thanks in advance,

    Hi,
    1) OWB is simple to use.
    2) we need not know the internal logic of PL/SQL to work on OWB.
    3) All the cursors will be created automatically and nothing needs to be mentioned.
    4) The GUI is very easy to operate and adding conditions are very simple.
    5) The loading properties can be set easily and we know how the mapping will behave.
    All said above are the advantages of OWB, but OWB is only a tool and a TOOL will always have its limitations.PL/SQL is a kind of programming language with which we can do anything and everything but in OWB we cannot make everything possible.
    Regards
    Bharath

  • OWB and ODI merger in 12g

    Just wondering if anyone has any insight on how Oracle is preparing to include OWB funcationality into ODI 12g and when it will be available?
    Thanks in advance.
    Edited by: D-Hawk on Jan 22, 2013 9:17 AM

    The ODI and OWB teams were consolidated a couple of years back and we have been very busy - busy with a lot of work in the ODI 11g release including a lot of features for BI Applications and very busy with the ODI 12c release - incorporating lots of cool stuff!
    The statement of direction published by Oracle is below, in the meantime from the inside
    http://www.oracle.com/technetwork/middleware/data-integrator/overview/sod-1-134268.pdf
    Cheers
    David

  • Whats the difference between FDM and ODI and DIM

    Hi Everyone,
    Can Anyone explain the diff between FDM,ODI and DIM
    Thanks!
    Vaneet

    FDM is purpose-built for--though not strictly limited to--loading financial data from external sources into Hyperion financial performance management applications, such as HFM, Planning, Essbase, etc. It it commonly used in financial consolidation/closing process, and it has many native features expected and required to support that type of activity. FDM is very well-suited to its intended purpose in serving the finance community of an enterprise. FDM is not so well-suited as a more generalized ETL tool, nor as a tool for maintaining application metadata.
    ODI and DIM, on the other hand, are both general-purpose, enterprise-class ETL tools. Unlike FDM, they can be used to maintain application metadata, although they aren't necessarily the best tools to use for that purpose in every situation. Both tools are much more IT-centric than FDM.
    DIM is actually Informatica PowerCenter bundled with some pre-build adapters for Hyperion products. In ODI vs. DIM, ODI is clearly Oracle's strategic product going forward.
    A restricuted-use ODI license is now included with several Hyperion products (e.g., Planning), whereas FDM and DIM licenses are not. But if one of your main requirements is to transfer financial data in a consolidation process, FDM is hard to beat.

  • What is the difference between ActionEvent and SelectionEvent?

    Technical Environment:
    Oracle jDeveloper 11.1.1.4.0
    Windows XP
    I think there is something behind ActionEvent and SelectionEvent that makes my code doesn't work.
    Here is my problem:
    I have three tables. One is a master table, contains summary of something. If I select a row on this table, the second table will show some data, based on the selected row on the first table. Yup, this is a ViewLink, and it is working perfectly. Now, I want the same thing works between the second and third table. If I select a row in second table, the third table should show some data, based on the selected row on the second table. The third table is a ViewObject with some bind parameters. I need to assign values to these parameters, which I get the value from the selected row on the second table. How can I do this?
    I have tried to use ExecuteWithParams. Select the row from second table, get the values, pass it into ExecuteWithParams Form, execute and.. it works.. I get the result on the third table. Here is the code how I do that:
    public void updateTableEvent(ActionEvent actionEvent) {
    DCIteratorBinding iter = gen.getIteratorBinding("SearchView3Iterator");
    Row rw = iter.getCurrentRow();
    oracle.jbo.domain.Date strDate = (oracle.jbo.domain.Date) rw.getAttribute("Tgl");
    String strRkno = (String) rw.getAttribute("Rkno");
    oracle.jbo.domain.Number strRkId = (oracle.jbo.domain.Number) rw.getAttribute("Rkid");
    DCIteratorBinding iterParam = gen.getIteratorBinding("variables");
    iterParam.getBindingContainer().getVariableManager().setVariableValue("ExecuteWithParams_pRkId", strRkId);
    iterParam.getBindingContainer().getVariableManager().setVariableValue("ExecuteWithParams_pTgl", strDate);
    iterParam.getBindingContainer().getVariableManager().setVariableValue("ExecuteWithParams_pRkNo", strRkno);
    OperationBinding operationBinding = gen.getOperationBinding("ExecuteWithParams");
    Object result = operationBinding.execute();
    But when I tried the same thing on SelectionEvent, I got nothing.. no error and also no result. What I want is just select the row on the second table, and get the result on the third table, with no any button pressing. Here is the code:
    public void onRowSelect(SelectionEvent selectionEvent) {
    DCIteratorBinding iter = gen.getIteratorBinding("SearchView3Iterator");
    Row rw = iter.getCurrentRow();
    oracle.jbo.domain.Date strDate = (oracle.jbo.domain.Date) rw.getAttribute("Tgl");
    String strRkno = (String) rw.getAttribute("Rkno");
    oracle.jbo.domain.Number strRkId = (oracle.jbo.domain.Number) rw.getAttribute("Rkid");
    DCIteratorBinding iterParam = gen.getIteratorBinding("variables");
    iterParam.getBindingContainer().getVariableManager().setVariableValue("ExecuteWithParams_pRkId", strRkId);
    iterParam.getBindingContainer().getVariableManager().setVariableValue("ExecuteWithParams_pTgl", strDate);
    iterParam.getBindingContainer().getVariableManager().setVariableValue("ExecuteWithParams_pRkNo", strRkno);
    OperationBinding operationBinding = gen.getOperationBinding("ExecuteWithParams");
    Object result = operationBinding.execute();
    So.. what is actually happening here? What is the differece between ActionEvent and SelectionEvent? Why do they give me difference response?
    Thanks for any comments.
    Regards,
    Novan Ananda

    Hi,
    ActionEvent :
    A semantic event which indicates that a component-defined action occured. This high-level event is generated by a component (such as a commandbutton,commandLink) when the component-specific action occurs (such as being pressed).
    SelectionEvent :
    Event that is generated when the selection of a component changes.
    //you can also search in api's

  • OWB and DB2

    I have connected Oracle 9i and DB2 v7 and query DB2 in SQL Plus is fine. However, it doesn't for the connection between OWB and DB2.
    Anyone can help?
    Thanks!

    Try the following and use the database link as the source.
    1. Copy inithsodbc.ora to initQA_DB2.ora in $ORACLE_HOME\hs\admin
    HS_FDS_CONNECT_INFO=DNS_NAME_OF_YOUR_CONNECTION
    HS_FDS_TRACE_LEVEL=0
    2. Add the following lines to listener.ora in Oracle server ($ORACLE_HOME\NETWORK\ADMIN)
    (SID_DESC =
    (SID_NAME = QA_DB2)
    (ORACLE_HOME = $ORACLE_HOME)
    (PROGRAM = hsodbc)
    3. Add the following lines to tnsnames.ora in Oracle server ($ORACLE_HOME\NETWORK\ADMIN)
    DB= (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)
    (HOST=localhost)
    (PORT=1521)
    (CONNECT_DATA = (SERVICE_NAME=QA_DB2)
    (HS = OK)
    4. Execute CATalog script for Heterogeneous Services in Oracle server ($ORACLE_HOME\RDBMS\ADMIN\caths.sql)
    5. Create database link
    drop public DATABASE LINK dwh_qa_db2;
    CREATE public DATABASE LINK dwh_qa_db2 CONNECT TO "carlosmo" IDENTIFIED BY "E1Qual" USING 'DB2';
    6. Test the connection
    SELECT *
    FROM SomeTable@dwh_qa_db2

  • OWB and DB2 connection

    I have connected Oracle 9i and DB2 v7 and query DB2 in SQL Plus is fine. However, it doesn't for the connection between OWB and DB2.
    Anyone can help?
    Thanks!

    Try the following and use the database link as the source.
    1. Copy inithsodbc.ora to initQA_DB2.ora in $ORACLE_HOME\hs\admin
    HS_FDS_CONNECT_INFO=DNS_NAME_OF_YOUR_CONNECTION
    HS_FDS_TRACE_LEVEL=0
    2. Add the following lines to listener.ora in Oracle server ($ORACLE_HOME\NETWORK\ADMIN)
    (SID_DESC =
    (SID_NAME = QA_DB2)
    (ORACLE_HOME = $ORACLE_HOME)
    (PROGRAM = hsodbc)
    3. Add the following lines to tnsnames.ora in Oracle server ($ORACLE_HOME\NETWORK\ADMIN)
    DB= (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)
    (HOST=localhost)
    (PORT=1521)
    (CONNECT_DATA = (SERVICE_NAME=QA_DB2)
    (HS = OK)
    4. Execute CATalog script for Heterogeneous Services in Oracle server ($ORACLE_HOME\RDBMS\ADMIN\caths.sql)
    5. Create database link
    drop public DATABASE LINK dwh_qa_db2;
    CREATE public DATABASE LINK dwh_qa_db2 CONNECT TO "carlosmo" IDENTIFIED BY "E1Qual" USING 'DB2';
    6. Test the connection
    SELECT *
    FROM SomeTable@dwh_qa_db2

  • OWB versus ODI

    Hi all,
    We are currently using OWB10g at our company and are considering the benefits of switching over to ODI.(Cost will also be a deciding factor). I need some suggestions from people who have used both OWB and ODI-could you compare what is better in ODI and what is not etc?
    Thanks.

    As far as I know OWB and ODI fall under the same licence now (at least in UK), so if you're licenced to use OWB + ETL options you're probably licenced to use ODI. Check with your friendly Oracle Account Manager :¬)
    Why are you thinking about moving to ODI, what limitations have you come across with OWB? A better upgrade path may be to OWB 11gR2 now that it supports (ODI) knowledge modules and has better integration with OBIEE (if use use that).
    If you search this forum and the ODI forum you'll find a number of posts on the subject, I posted a similar question a few months back after which we decided to stick with OWB. Oracle have stated they will provide a migration path to a single product in the future.
    Si

  • OWB and Windows 7

    Hi, we're trying to get OWB running under Windows 7. Right now, we're constrained on staying with OWB 10.2.0.4 (or possibly 10.2.0.5 if upgrade is needed). Anyone had luck getting this to run? Maybe by using the special Vista version or something?
    p.s. Oracle support says OWB 10.2.xxx will not (ever) be supported on Windows 7 - but we've got to try something....
    I'd try this out myself - but I don't have access to Windows 7, it's on a production control person's machine we need to get this working.
    Thx,
    Scott

    I'm running 64 bit Windows 7 and OWB 11gR1.
    OWB 11g won't work properly when installed natively - there are far too many places where exceptions are trapped and ignored - hiding errors.
    OWB works fine when installed in a 32bit XP VM.
    If you are on Windows 7 Business or Ultimate, you can install Windows Virtual PC and XP mode.
    Install in a VM and it works fine. Windows 7 actually has some nice integration features to make this layering of Operating Systems a little more transparent.
    I think the problems relate to the 64 bit java vs the 32 bit java and the crappy exception handling that went into OWB.
    A well written java program (see SQL Developer) shouldn't have too much difficulty in the port to 64 bit.
    I'd wager that OWB will never make it to 64 bit. Some form of the future merged OWB and ODI will make it's way to 64 bit Windows.

  • HI experts can u tell me the difference between LIS AND LOCOCKCPIT ext ?

    hi experts iam in learning stage ,so plz can some one tell me the differece between LIS and LO COCKPIT  extractions and various steps invovlved in them , sorry for being pain in the back i did search in the previous posting didnt find the right answer . cheers thanks

    Hi,
    LO **** pit 
    -->BW CONTENT EXTRACTOR......
    ---> it uses Readymadely available datasorce
    --->LO cockpit supports V3 update(BACK GROUND SCHEDULING Jobs)
    LIS
    ---> CUSTOMER GENERATED EXTRACTOR.
    > need to cretae everything...
    --->LIS does't supports V3 update mode... it supports only V1 (SYNCHRONUS)& V2(ASYNCHRONUS UPDATE)
    check these links:
    Difference B/n LOCOCKPIT &LIS
    differences between LO and LIS
    Differences between LIS,LO,CO/PA and FI-SL extractors
    Difference between LIS  and LO Cockpi interma of table?
    difference between LIS and LO Setup run
    LIS and LO Cockpit
    hope it helps...............
    Regards
    chandra sekhar
    Edited by: chandra  sekhar on Dec 16, 2008 2:01 PM

  • Is there a difference between RTPManager and RTPSessionMgr

    I would like to know if there is a differece between RTPManager and RTPSessionMgr.
    The thing is that i have 10 transmisors that create RTPSessionMgr but my receivers create RTPManagers.
    Is an RTPManager supossed to get all messages coming form RTCP even if they don come from the manager of the transmissor. I'm having a real problem with this.
    Thank all

    iBooks is for reading pdfs and epubs. iBooks Author is for creating iBooks. You can do a search in Spotlight for iBooks Author to find where it is located. It should be in your Applications folder.
    I'm not sure how you downloaded iBooks, as it's not available in the Mac App Store.

  • What is differece between aapex2.x and apex 3.2

    Hi All
    what is differece between APEX 2.X and APEX 3.2
    And how to convert a fmb to xml in APEX 2.X
    I downloade the APEX 3.2 how install it
    please guide
    Thanks And Regards
    Vikas

    what is differece between APEX 2.X and APEX 3.2That's impossible to cover or even properly summarize in a forum post, and is easy enough to find:
    [APEX 2.2 new features|http://www.oracle.com/technology/products/database/application_express/html/whats_new_2.2.html]
    [APEX 3.0 new features|http://www.oracle.com/technology/products/database/application_express/html/3.0_new_features.html]
    [APEX 3.1 new features|http://www.oracle.com/technology/products/database/application_express/html/3.1_new_features.html]
    [APEX 3.2 new features|http://www.oracle.com/technology/products/database/application_express/html/3.2_new_features.html]

Maybe you are looking for

  • Error in Call Adapter stage

    Hi I am trying to post to the ECC system using XI Adapter. I get this error at the Call Adapter stage URL http://host:port/sap/xi/engine call was terminated because the corresponding service is not available. Here the host is the server name of the E

  • Upgrade WLC 5508 Ver. 7.0.98.0 to Ver 7.6.110.0

    i will upgrade WLC 5508 Ver 7.0.98.0 with License 50 AP. to Ver 7.6.110.0 will it ask to install license ?

  • Party in a b2b Communication.

    All, I am currently involved in getting a naming conventions document for a landscpae that has more B2B scenario. Think of B2B and the first think that comes to mind is "Party" . I know you create the Party in the Integration Directory and then add t

  • LOV query remains unchanged

    Hi All, I have a custom LOV VO. For bug fix I replaced the LOVVO.xml and its class files into the server. But even after repetitive bounces the LOV resultset does not get refreshed. ( Though the physical .xml file is overwriten in server) But any oth

  • Has anyone received their Apple Watch paid for in full or partial with an Apple gift certificate?

    Anyone received their watch paying with an Apple gift certificate?