Updated OWB module available in "Oracle By Example" series on OTN

All,
The Oracle By Example series on OTN has been updated to Oracle9i Release 2. This includes a Warehouse Builder module updated from 3i to 9i. The module is a simple set of hands-on activities using the order entry tables that come with the database. (The module is a high-level overview, not a substitute for the 4-day instructor led course, "Oracle9i Warehouse Builder: Implementation", course code D12157GC20.)
The URL for the Oracle By Example OWB module is:
http://otn.oracle.com/obe/
Click "Oracle by Example Series Release 2".
Then click #8, "Build a Data Warehouse for Business Intelligence".
Then click #8, "Creating a Data Warehouse Using Oracle Warehouse Builder".
Regards,
Rick

Hi Paul,
As far as my understanding.
You dont want to create "REL_EXPENSE.REL_EXPENSE.REL_TIME_DAY_CODE" in the times dimension since the "code" attribute is already present in the time dimension(once you created using time wizard).
Soon after you created the cube by mapping the two dimension "category" and "times" to it, all the attributes in both the dimension will be present in the cube automatically. Other than this you will create a measure column named "Expense" in the cube.
Regards,
Saro
Mark Answers Promptly

Similar Messages

  • Failed to Download Oracle By Example series

    When I tried to download the full Oracle By Example series from http://www.oracle.com/webapps/dialogue/dlgpage.jsp, the 31 Mb file downloaded, but cannot be opened by Winzip. It says it is damaged. Winace could get a partial look at its contents, but also reported it as damaged.
    I've tried the download twice, over our high-speed fibre optic link to our ISP, so transmission network quality is not a problem, as it could be on a dial-up link.
    Both attempts gave the same result. Coud it be a problem with the ZIP file on your server ??

    Hi,
    Try this http://otn.oracle.com/products/oracle9i/htdocs/9iober2/obe9ir2/download/obe9ir2.zip
    Trond

  • What happened to Oracle by Example?

    What happened to the Oracle By Example Section of OTN? This was a great tutorial which showed how to set up the Oracle database, Application Server etc. It also had case studies showing how to use different features of the database. I was using it as recently as two months ago, but now I can't find it anywhere.
    Was it removed?
    Please email me also at [email protected]
    Thanks.

    Kurt,
    I think these people are trying to integrate all the apps with SSO.
    There are changes in the way Metalink is being accesssed too ..
    So i hope it should be back soon (clarification: I am not the official word )
    Sunil

  • Oracle By Example - New Install for Each Module?

    I downloaded the Data Warehouse Oracle By Example module. The instructions indicate that that Oracle must be uninstalled and reinstalled before following this module. Do you know if this is necessary? And is it necessary for each module one wants to follow?
    I'd rather not uninstall my current DBs, but will if I must. Please advise.
    Thank you,
    Miki

    Apologies.
    Seems like the OAM-OVD tutorial is not present in the new OBE library. Anyways you may check the below link to configure OAM to OVD.
    http://download.oracle.com/docs/cd/E15217_01/doc.1014/e12493/vde.htm

  • Unusual behavior with 'IKM Oracle Incremental Update' knowledge module

    Hi All,
    We are getting strange behaviour in our PIP.We have following three scenarios in our PIP.
    1) LOAD_ORACLEEBIZ_PROCESSMFG_BULK_LOT_DATA_TO_PAS_PKG
    2) LOAD_ORACLEEBIZ_DISCRETEMFG_WORKORDER_DATA_TO_PAS_PKG
    3) LOAD_ORACLEEBIZ_PROCESSMFG_WORKORDER_DATA_TO_PAS_PKG
    we have a project variable PVV_GET_SCEN_NAME which will hold the scenario name in that package.
    we are trying to modify the 'IKM Oracle Incremental Update' knowledge module, we have written following code.this code will match the content of I$ table with target table based on various columns.if they are matching we will delete the matching rows from target table. But when we are executing scenario "LOAD_ORACLEEBIZ_PROCESSMFG_BULK_LOT_DATA_TO_PAS_PKG",then the wrong IF condition is getting matched in the following procedure.
    the condition that is getting matched is "ELSIF ('#ORACLEEBIZ_TO_PAS_PROJECT.PVV_GET_SCEN_NAME'='LOAD_ORACLEEBIZ_DISCRETEMFG_WORKORDER_DATA_TO_PAS_PKG') THEN".Actually the value of #ORACLEEBIZ_TO_PAS_PROJECT.PVV_GET_SCEN_NAME will be LOAD_ORACLEEBIZ_PROCESSMFG_BULK_LOT_DATA_TO_PAS_PKG.i am not sure why odi is matching this condition.
    Please provide your comments on this issue.thanks in advace.
    IKM step:
    BEGIN
    IF '#PVV_GET_SCEN_NAME'='LOAD_ORACLEEBIZ_PROCESSMFG_BULK_LOT_DATA_TO_PAS_PKG' THEN
    DELETE FROM <%=odiRef.getTable("L", "TARG_NAME", "W")%> WHERE (item_number,lot_number,source_system) IN
    (SELECT item_number,lot_number,source_system FROM <%=odiRef.getTable("L", "INT_NAME", "A")%>);
    COMMIT;
    ELSIF '#PVV_GET_SCEN_NAME'='LOAD_ORACLEEBIZ_DISCRETEMFG_WORKORDER_DATA_TO_PAS_PKG' THEN
    DELETE FROM <%=odiRef.getTable("L", "TARG_NAME", "W")%> WHERE (segment1,segment2,segment3,source_system,item_number) IN
    (SELECT segment1,segment2,segment3,source_system,item_number FROM <%=odiRef.getTable("L", "INT_NAME", "A")%>);
    COMMIT;
    ELSIF '#PVV_GET_SCEN_NAME'='LOAD_ORACLEEBIZ_PROCESSMFG_WORKORDER_DATA_TO_PAS_PKG' THEN
    DELETE FROM <%=odiRef.getTable("L", "TARG_NAME", "W")%> WHERE (segment2,source_system) IN
    (SELECT segment2,source_system FROM <%=odiRef.getTable("L", "INT_NAME", "A")%>);
    COMMIT;
    ELSE
    NULL;
    END IF;
    END;
    Thanks
    Baji

    Hi Himanshu,
    Thanks for your help.
    I gave fully qualified name,even then it didn't worked.
    - How are you deriving the value of variable
    project variable PVV_GET_SCEN_NAME is refreshing variable and it will get the value of scenario with the following sql query
    select SESS_NAME
    from <%=snpRef.getObjectName("L","SNP_SESSION","D")%>
    where SESS_NO = <%=snpRef.getSession("SESS_NO")%>
    -Log or store the value of variable as comment in IKM sql query using "-- #varvalue" and note the value is same as compared
    When i gave --#varvalue (or) --#ORACLEEBIZ_TO_PAS_PROJECT.PVV_GET_SCEN_NAME is doesnot display any thing.what i did is I changed the PVV_GEN_SCEN_NAME variable to hostorize variable to see correct value of that and after the executing the scenario,i can see the value as "LOAD_ORACLEEBIZ_PROCESSMFG_BULK_LOT_DATA_TO_PAS_PKG".I also tried same thing by changing technology to jython and i am able to see same value "LOAD_ORACLEEBIZ_PROCESSMFG_BULK_LOT_DATA_TO_PAS_PKG" for the PVV_GET_SCEN_NAME variable.
    Thanks
    Baji

  • What are the types of lookandfeel is available in oracle forms?

    Hi Gurus,
    What are the types of lookandfeel is available in oracle forms?
    And where i can see?For Example: &lookandfeel=oracle
    Regards
    Gopinath M

    Rosario, don't feel bad -- English is my only language, and those acronyms give me trouble sometimes, too. The quickest and easiest way to find out what they mean is to go to google.com and type in the letters. That is what I do.

  • Data Transformation Service (DTS) available in Oracle SQL Developer?

    Hi All,
    Sorry to bother you again. Is Data Transformation Service (DTS) available in Oracle SQL Developer? So far I cannot find it. For example, i want merge First Name, Last Name column from Access,excel or cvs to migrate as Full Name in Oracle or Full name in Access,Xls or cvs split into First name & last name column in Oracle. What method or service should I use.
    Regards,
    Tun Tun

    On wikipedia, I see that's a SQL Server component, so I don't think it's possible to use it in any other program.
    But you can always tweak columns through normal queries, and even create a new table based on that, like
    CREATE TABLE Table_New AS
    SELECT First_Name || Last_Name FROM Table_OldHope that helps,
    K.

  • How to view the tables/views available in Oracle

    HI,
      I am creating DB connection and importing the data from Oracle TABLES/ Views. I just want know how to view the tables/views available in Oracle. (I have the login details). Can I view thru TOAD? Pl let me know the best way and suggestions/ views / Links/ whitepagers.
    Regards,

    Hi,
    I don't remember exacly: RSA1 -> source system -> "replicate datasources". Works this also in a DB-source system. I think so.
    => you get all tables that your user has authorisation.
    This function execute for example (in oracle there are same information tables: dba_tables, user_tables ...) following select in the database:
    select TABLE_NAME from DBA_TABLES;
    Sven

  • Questions regarding update function module

    Hello experts,
    I am on customer site to help them investigate one issue: they have a background job which runs periodically.
    In the report database table A is changed firstly ( new entries are inserted ), then a update function module is called via keyword CALL FUNCTION ... IN UPDATE TASK.
    Inside the function module database table B is updated. ( existing entries are updated )
    Customer issue:
    sometimes they find A is updated as expected, however B remains unchanged at the same time.
    customer could not find exact steps to reproduce the issue. However the issue does exist there and occur from time to time.
    the issue could only be reproduced in their production system, but works perfectly well in dev & Q system. It is difficult to debug in their production system for trouble shooting.
    After analyzing related code, I have one doubt: according to ABAP help on CALL FUNCTION aaa IN UPDATE TASK, I know the function module aaa is called in a new update work process. I wonder whether there is any possibility there this issue might be caused because the update function module fails to get called at all? ( perhaps due to heavy system load so no free update function module could serve the table B update ? )
    If update function module fails to execute, is there any system utility to record this? That is to say, will it be recorded in such as SM13 or SM21?
    Looking forward to your expertise on this topic!
    Best regards,
    Jerry

    Hello friends,
    Thanks a lot for your interests on this issue. I update all my findings:
    1. issue background: this issue occurs in SAP CRM Channel manageement Solution, software component CRM-CHM-POS.
    2. due to some limitations, the table CMSD_CI_HISTORY and history table are not updated in the same LUW. Instead the first one is updated in normal work process while the other is done in update work process. Since I am not the original developer I didn't know the whole complex scenario ( I did see this is done delibrately in note 1764006 - CMS:Sell In Release creating PB with zero available quantity ).
    So for the moment we have to accept this design.
    3. during our testing ,we ensure COMMIT WORK is always called.
    4. So why sometimes the first table update fails, however there is no hint at all for this failure in the system like ST22 and SM21 ?? ( forget SM13, since it is updated in normal work process ).
    The root cause is the flaw of SAP code below.
    The code has planned to raise exception if insertion failed due to duplicate records to be inserted.
    Unfortunately, the fact is if we use "INSERT db FROM TABLE xxx" to insert records into database and some record already exists with the same key, it will result in a termination but SY-SUBRC is STILL 0; Just compare it with single insertion using "INSERT db FROM <work area>", in the same error situation, processing does not terminate, and SY-SUBRC is set to 4.
    As a result in this case even the insertion fails, line 29 will never be executed as sy-subrc is always 0. Since the insertion fails and the exception is caught without any notification, so customer sufferred because they do not know what has happened.
    Best regards,
    Jerry

  • How two create UPDATE FUNCTION MODULE

    Hi,
    I have 2 tables to update one after the other...
    I have geard it is advisable to use update function module for this..
    can any1 tell me how to create and work with update function modules...
    Answers will be rewarded....

    Abhay,
    How an update function module works is, the execution of the FM is delayed to until when a COMMIT WORK statement is executed.
    Hence if you have the data available for updating the two DB tables at the time of calling the FM, you can pass the tables to the same FM and program the DB update for both in the same FM.
    However the COMMIT WORK should be outside the FM further down in the calling program.
    This link is very good and easy to follow
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/41/7af4daa79e11d1950f0000e82de14a/frameset.htm
    Hope it helps
    Aditya[url=http://help.sap.com/saphelp_erp2005vp/helpdata/en/41/7af4daa79e11d1950f0000e82de14a/frameset.htm]
    Message was edited by:
            Aditya

  • Latest version available for Oracle Forms and Reports in 11g AS

    Deaer Friends,
    Please let me know latest version available for Oracle Forms and Reports in 11g Application Server and let me know whether it is supported in Windows - 64 Bit Platform
    Regards,
    DB

    DB,
    Oracle Forms and Reports 11g Release 2 (11.1.2) is the most recent forms and reports.
    If you're on 11.1.1.x (for example 11.1.1.5 or 11.1.1.4), please refer to http://docs.oracle.com/cd/E24269_01/doc.11120/e23975/upgrade_from_r1.htm for upgrade procedure.
    Otherwise, if you're installing it brand new, download Oracle Forms and Reports 11gR2 (11.1.2.0.0 from http://www.oracle.com/technetwork/developer-tools/forms/downloads/index.html
    HTH,
    Raj Mareddi
    http://www.freeoraclehelp.com

  • Is OID available in Oracle identity management 11g R2

    Is OID available in Oracle identity management 11g R2

    OID is not yet available in 11gR2.
    As you can see in the list below, ODSEE and OUD are the only directories currently available in 11gR2.
    Here is the list of products in Oracle Identity Management 11g R2
    Oracle WebLogic Server 11gR1 (10.3.6) and Coherence
    Oracle Access Manager Access SDK 11.1.2.0.0
    Oracle Entitlements Server Security Module 11g (11.1.2.0.0)
    Oracle Access Manager WebGates 11.1.2.0.0
    Oracle Business Intelligence 11g (11.1.1.5.0)
    Oracle Fusion Middleware Repository Creation Utility 11g (11.1.2.0.0)
    Oracle Identity and Access Management 11g (11.1.2.0.0)
    Oracle Directory Server Enterprise Edition 11gR1 Patch Set 1 (11.1.1.5.0)
    Oracle Identity Management 11g Patch Set 5 (11.1.1.6.0)
    Oracle SOA Suite 11g Patch Set 5 (11.1.1.6.0)
    Oracle Fusion Middleware Repository Creation Utility 11g (11.1.1.6.0)
    Oracle Unified Directory 11g (11.1.2.0.0)
    Oracle Fusion Middleware Identity Management Documentation Library 11g Release 2 (11.1.2.0.0)
    Oracle Coherence for C++ Version 3.7.1
    Oracle Coherence Version 3.7.1
    Oracle OpenSSO Fedlet version 11.1.1.3.0

  • WHAT ARE THE UPDATED FUNCTION MODULES

    Hi Friends,
    Can anybody explain me about UPDATED FUNCTION MODULES (types of function modules)

    Hi
    Update Function Module
    Unlike transactions and executable programs, dialog modules do not start a new SAP LUW. Calls to update-task function modules from a dialog module use the same update key as the ones in the calling program. The result is that calls to update function modules from a dialog module are executed only if a COMMIT WORK statement occurs in the calling program.
    If you place a COMMIT WORK in a dialog module, it does commit changes to the database (for example, with UPDATE).However, it does not start the update task. The function modules are not actually executed until a COMMIT WORK statement occurs in the calling program.
    If you use dialog modules, try to avoid including calls to update function modules in subroutines called with PERFORM ON COMMIT. In general, any occurrence of PERFORM ON COMMIT(with or without update-task function calls) in a dialog module can be problematic.
    This is because dialog modules have their own roll area, which disappears when the module finishes. Consequently, all local data (including data used for parameter values when calling an update function module) disappears as soon as the commit in the main program is reached.
    If you must use this method in a dialog module (i.e. include the call to an update-task function in a subroutine), you must ensure that the values of the actual parameters still exist when the update-task function actually runs. To do this, you can store the required values with EXPORT TO MEMORY and then import them back into the main program (IMPORT FROM MEMORY) before the COMMIT WORK statement
    Creating Update Function Modules
    To create a function module, you first need to start the Function Builder. Choose Tools ® ABAP Workbench, Function Builder. For more information about creating function modules, refer to the ABAP Workbench Tools documentation.
    To be able to call a function module in an update work process, you must flag it in the Function Builder. When you create the function module, set the Process Type attribute to one of the following values:
    Update with immediate start
    Set this option for high priority ("V1") functions that run in a shared (SAP LUW). These functions can be restarted by the update task in case of errors.
    Update w. imm. start, no restart
    Set this option for high priority ("V1") functions that run in a shared (SAP LUW). These functions may not be restarted by the update task.
    Update with delayed start
    Set this option for low priority ("V2") functions that run in their own update transactions. These functions can be restarted by the update task in case of errors.
    To display the attributes screen in the Function Builder, choose Goto ® Administration.
    Defining the Interface
    Function modules that run in the update task have a limited interface:
    Result parameters or exceptions are not allowed since update-task function modules cannot report on their results.
    You must specify input parameters and tables with reference fields or reference structures defined in the ABAP Dictionary.
    http://help.sap.com/saphelp_nw70/helpdata/en/41/7af4daa79e11d1950f0000e82de14a/frameset.htm
    Regards,
    Harish

  • Oracle By Example: Sensor Edge Server

    This morning I found some information about the Sensor Edger Server (10g AS Version 10.1.2) on the Oracle by Example web site:
    http://www.oracle.com/technology/obe/start/as.html
    Follow the link for 10.1.2 and you will find an example for the Sensor Edge Server.
    Best Regards,
    Jim S

    Hello,
    I tried to compile the example of QBE: EdgeSimulator.java
    However, the oracle.edge.* packages are not available.
    I already added the jar files in Edge_Home\lib to the project library, but it still failed.
    Could anyone tell me how to get these packages?
    Thanks for your information!!

  • Problem updating new firmware available for Z2 Tablet Wifi

    So finally my Xperia Z2 Tablet Wifi, notify me there is update for 17.1.1.A.0.402. But the catch is need to be connect to the computer to do the updates. I re-download PC Companion many times (http://www.sonymobile.com/ca-en/tools/pc-companion/) as mention every thread. And yet it still saying PC Companion must be updated. and it does not provide way to update it.
    My PC companion is version 2.1 as far I can tell. Is the website still running on software???
    Solved!
    Go to Solution.

    I was fighting this issue with the addition of the Tablet not being recognised and looping between PC Companion telling me that it did not see the tablet, and then that it needed to update PC Companion... despite me updating it twice now. I called Sony Support who sent me directions to getting it updated. Unfortunately, it wiped my tablet to default. Lost everything in it, but it was not a surprise and it tells you that at every juncture. I pasted the directions in this message. Good luck! ----------------------- --------- We have an extended guide that should help you fix the issue on your phone, please follow the instructions carefully: Visit this link: http://www.sonymobile.com/us/tools/pc-companion/ Click on Download PC Companion Run the software and install it Turn the phone off and disconnect it from the computer 1. No matter what the program says do not connect the phone until you complete step 9 2. In the welcome screen you will see the different modules available for you including the "Support Zone" option. Click on "Start" below it. 3. On the next page Click on "Start" under "Phone Software Update" At this point if you get an error stating that "Unable to install update components" or "Server is busy" , then please proceed to step 12 4. The program will say that there is no phone connected. Click on the option below that reads: "Repair my phone" the program will issue you a warning about the content that you will lose during the update 5. Choose the option to continue. 6. The program will issue a final message warning you of possible data lost during the update. Click on the checkmark and then on "Next". 7. After that, the program will download the necessary information (5 to 6 minutes) and it will present you with a list of phones. 8. Choose your phones model from the list then click on "Next" then you will see a new section telling you how to connect the phone. (don't connect it yet) At this point the phone must be off and disconnected from the PC. 9. Connect the cable to the PC not to the phone, then while pressing and holding the indicated button (in the steps on screen an specific button will be shown for you to press on the phone) connect the cable to the phone and keep holding the indicated button until the program says "the update of your phone has started..." (in some cases a message of "Installing drivers" will appear before the message of "the update of your phone has started..." is shown.) 10. If you failed to follow the steps correctly the phone will turn on and it will request that you "Proceed with the following steps, slide down the notification bar", If this happens disconnect the phone from the cable, turn it off and repeat from step 9). 11. If the phone is connected properly, PC Companion will proceed with the update ( It will tell you to let go of the back key) then wait for the update to finish and follow instructions on screen to disconnect the unit. Dear Customer, 12. If "Unable to install update components" 1. Close PC Companion 2. Install Java from: http://www.java.com 3. Start PC Companion again and try to do the software unlock process once more. Note: If you wish only to update the unit wait for the program to open and then select the quick link on the upper left corner that says "Update Phone/Tablet" and follow the instructions to perform the update. (the PC may request for the phone to be placed in Mass Storage mode. Do this by going into Settings>Xperia>Connectivity>USB connection mode) As part of Sony Mobile's commitment to excellent customer service, we offer a wide variety of mobile products to suit your lifestyle. If you require more information, or have any other questions, please visit www.sonymobile.com or call us at 1-866-766-9374

Maybe you are looking for