Multiple ODS Data Model?

I was doing some design review with a colleague and there was a suggestion for multiple ODS's coming out of the same DataSource and filtered by year. For example, one ODS for 2005, one for 2006, etc, and then a cube on top of each ODS (cube for 2005, 2006 etc).
I know that logical/application level partitioning is an effective way to manage reporting performance, but at the staging layer (if there is no reporting on ODS), does it make sense to break the ODS's into years?
Why wouldnt we just use one staging ODS for all data and then distribute the data by year to each cube? Can you provide any reasons for or against this design?
This is for a FI GL/AP/AR design.
Thanks for any input!
Justin

Hi,
The ODS is not recommended for reporting .
It is just should be used as a datastaging Layer.So we need to avoid the use of ODS for reporting  purpose. The Data upload to and from ODS is not a problematic issue even though it has laready lot of records in it ,if there is no reporting has been set on ODS. So there is no where ,it is suggested to you Multiple ODSs instead of Single ODS.
With rgds,
Anil Kumar Sharma .P

Similar Messages

  • Filtering multiple-XML data model with parameters

    I have a data model that consists of a concatenation of 9 separate RSS feeds (weather information from 9 different cities coming from http://www.weather.gov/data/current_obs/????.xml, where ???? is the National Weather Service station ID). All of the feeds have exactly the same format. When I view the raw XML data, I see 9 different values of station_id and of every other tag. So the XML data looks fine. Now I'd like to be able to select one city at a time in an LOV dropdown.
    I've created a static LOV called Cities with the list of the 9 station ID's. I've created a parameter called city that is tied to that LOV.
    What I can't figure out is how to tie the selected city to the station_id field in the concatenated XML dataset.
    I've tied adding a parameter to each rss data set, entering each city's 4-character station ID into its Parameter Name field, and of course choosing city as the parameter. For example, the Parameters section for the Amarillo rss feed would show a Name of KAMA and a Value (Parameter) of city. While this seems logical, selecting the parameter on the View screen doesn't change the display.
    Is there a way to accomplish this?

    Ahhh, post as in "e-mail". DOH!
    E-mailed to you.

  • Use a multiple selection parameter in the data model

    Hi
    i have created a parameter with the property multiple selection.
    This parameter i use in the Data Model where area,
    if i just mark one value the report works well if i mark more the one
    the report run into a error.
    WHERE PSNR IN :ma
    the xdo looks like
    <?xml version = '1.0' encoding = 'utf-8'?>
    <report version="1.1" xmlns="http://xmlns.oracle.com/oxp/xmlp" defaultDataSourceRef="tisoware">
    <title>BDE Nettozeit</title>
    <properties>
    <property name="showControls" value="true"/>
    <property name="online" value="true"/>
    <property name="parameterColumns" value="2"/>
    <property name="openLinkInNewWindow" value="true"/>
    </properties>
    <dataModel defaultDataSet="BDERUECK">
    <dataSet id="BDERUECK">
    <sql dataSourceRef="tisoware">
    <![CDATA[SELECT (SUBSTR(DATUM,1,6)) AS DATUM, SUM(NTTOZEIT) AS ZEIT,
    TRUNC(SUM(NTTOZEIT)/60) AS STUNDE
    FROM BDERUECK
    WHERE (DATUM  >= :datev) AND (DATUM <= :dateb) AND (KZDELETE = 'N') AND FIRMA = '1' AND ((PSNR IN :ma))
    GROUP BY (SUBSTR(DATUM,1,6))]]>
    </sql>
    <input id="datev" value="${datev}" dataType="xsd:string"/>
    <input id="dateb" value="${dateb}" dataType="xsd:string"/>
    <input id="ma" value="${ma}" dataType="xsd:string"/>
    </dataSet>
    </dataModel>
    <valueSets>
    <valueSet id="date">
    <sql dataSourceRef="tisoware">
    <![CDATA[SELECT DISTINCT DATUM
    FROM BDERUECK]]>
    </sql>
    </valueSet>
    <valueSet id="employee">
    <sql dataSourceRef="tisoware">
    <![CDATA[select      PERSTAMM.PSPERSNR as PSPERSNR,
          PERSTAMM.PSNR as PSNR
    from      TISOWARE.PERSTAMM PERSTAMM
    where    PERSTAMM.FIRMA = '1'
    order by PERSTAMM.PSPERSNR]]>
    </sql>
    </valueSet>
    </valueSets>
    <parameters>
    <parameter id="datev" defaultValue="20050103">
    <select label="Datum von : " valueSet="date" multiple="false" all="false" refreshParameters="false"/>
    </parameter>
    <parameter id="dateb" defaultValue="20060930">
    <select label="Datum bis : " valueSet="date" multiple="false" all="false"/>
    </parameter>
    <parameter id="ma" defaultValue="152">
    <select label="Mitarbeiter : " valueSet="employee" multiple="true" all="false"/>
    </parameter>
    </parameters>
    <templates default="BDE Nettozeit">
    <template label="BDE Nettozeit" type="rtf" url="BDE Nettozeit.rtf"/>
    </templates>
    </report>

    Alex,
    the missing thing in your example is the fact, that if only one value is selected, the parameter has exact this value like BOSTON. If you choose more than one value, the parameter includes the *'*, so that it looks like *'BOSTON','NEW YORK'*. So you need to check in the package, if there's a *,* in the parameter or not. If yes there's more than one value, if not it's only one value or it's null.
    So change your package to (you need to expand your variables)
    create or replace package bip_departments_2_parameters
    as
    p_dep_2_param varchar2(1000);
    p_loc_1_param varchar2(1000);
    p_where_clause varchar2(1000);
    function beforereporttrigger
    return boolean;
    end bip_departments_2_parameters;
    create or replace package body bip_departments_2_parameters
    as
    function beforereporttrigger
    return boolean
    is
    l_return boolean := true;
    begin
    p_where_clause := ' ';
    if p_dep_2_param is not null then
    if instr(p_dep_2_param,',')>0 then
    p_where_clause := 'WHERE DNAME in ('||p_dep_2_param||')';
    else
    p_where_clause := 'WHERE DNAME = '''||p_dep_2_param||'''';
    end if;
    if p_loc_1_param is not null then
    if instr(p_loc_1_param,',')>0 then
    p_where_clause := p_where_clause || ' AND LOC IN ('||p_loc_1_param||')';
    else
    p_where_clause := p_where_clause || ' AND LOC = '''||p_loc_1_param||'''';
    end if;
    end if;
    else
    if p_loc_1_param is not null then
    if instr(p_loc_1_param,',')>0 then
    p_where_clause := p_where_clause || 'WHERE LOC in ('||p_loc_1_param||')';
    else
    p_where_clause := p_where_clause || 'WHERE LOC = '''||p_loc_1_param||'''';
    end if;
    end if;
    end if;
    return (l_return);
    end beforereporttrigger;
    end bip_departments_2_parameters;
    I've written a similar example at http://www.oracle.com/global/de/community/bip/tipps/Dynamische_Queries/index.html ... but it's in german.
    Regards
    Rainer

  • Query regarding the data type for fetcing records from multiple ODS tables

    hey guys;
    i have a query regarding the data type for fetcing records from multiple ODS tables.
    if i have 2 table with a same column name then in the datatype under parent row node i cant add 2 nodes with the same name.
    can any one help with some suggestion.

    Hi Mudit,
    One option would be to go as mentioned by Padamja , prefxing the table name to the column name or another would be to use the AS keyoword in your SQL statement.
    AS is used to rename the column name when data is being selected from your DB.
    So, the query  Select ename as empname from emptable will return the data with column name as empname.
    Regards,
    Bhavesh

  • Call Multiple RTF for same data model

    How call two templates for the same data model.
    what is the logic i have to use in the rtf template.
    Thanks in Advance

    Your RTF template will use the data model you defined.
    So no logic than just inserting the xml elements your data model provides.
    You can associate multiple templates to one data model. At runtime you will have the opportunity to select
    the template of your desire to run the data against.
    If you want this process to be automated then you will have to user bursting and for that you need to read this:
    http://download.oracle.com/docs/cd/E14571_01/bi.1111/e13881/T527073T555155.htm#T555156
    Cheers
    Jorge
    p.s If this answers your question then please grant the points and close the thread

  • Load ODS data into multiple cubes

    I have an ODS that has global data.  I need to load the ODS data to multiple cubes based on region and year.  The delta is setup between ODS and cubes.  How do we go about doing this in 3.x and 7.0 and is there any difference in the procecure between these two versions.
    Regards,
    Ram.

    Hi Ram.
    In BI 7.0, you need to create separate Transformations from your Data Store object (DSO) to all the Multiple cubes. For each transformation you then have to create a Data transfer process (DTP). In the DTP you can select data based on the Region and Year.
    DTP data selection
    1. Open the DTP
    2. Goto the Extraction Tab
    3. There will be a "Filter" button opposite to the Extraction mode.
    4. By using this Filter button you can do data selection on different fields.
    In BW 3.x you need to create update rules instead of transformations. The following link should give you more details
    http://help.sap.com/saphelp_nw2004s/helpdata/en/3f/0e503c3c0d563de10000000a114084/frameset.htm
    Regards, Uday
    Assign points for helpful answers and get one point for yourself.

  • Creating a report having Multiple Data Models...

    Using BI publisher for Word 10.1.3.4
    I am attempting to create a template in MS Word with the report settings I have created in BI Publisher.
    I've created two data models, both referencing different tables that I will need on the report itself. The issue I have having is whenever I use the table wizard, the rowset is grayed out and only the default data model (sql query) can be used.
    I looked around and was unable to find a solution to this.

    I have done this and it worked.
    However I created an additional data model (I need 3 total) and only 2 of them are showing up.
    I tried logging in and out of BI Publisher, setting the main data model to the new one and then back to the concatenated data source and nothing seems to work.
    Whenever I got back into BI Publisher, I attempted to run the table wizard and got the following error:
    "The table wizard can't handle this data xml."
    Please advise.

  • BI Publisher Report with Multiple data models

    I have an Oracle Report with two different data model(querys) and Layouts for Summary and Details. When the user Choses Summary it execute the summary data model query and display the result in summary Repeating frame Layout and when user choses Details it execute the other query and uses the other layout.
    Now I am creating the same report in Stand alone BI Publisher. As a company standard we are using Data Template for Data model. How can I accomplish the same feature I mentioned above in BI Publisher? Meaning How can I control and execute the querys in BIP based on a parameter "Summary" or "Details" ?
    Can Someone help
    George

    option1:
    The query should be same @ detail level, only the template has to be different for summary and details.
    @runtime, user can choose to see the detail/summary
    Disadvantage, if the data is huge,
    advantage , only one report.
    option2:
    create two separate reports summary and details
    and create diff data and diff layout and keep it as different report
    Advantage, query will perform based on the user run report, summary/detail, so that you can write efficient query.
    Dis advantage , two reports query/template to be maintained.

  • Format Trigger on Frames - SQL in data model

    I am working on a report that gets data from huge tables that could possibly have millions of records. I have about four different queries in my data model. Each of the queries is attributed to a Frame in my layout model. However depending on the input parameters to the report, I need to suppress some frames.
    I know we can simply conditionally set the format trigger (return FALSE) on the frame to turn of its display. But is there a way not to do the SQL query in the first place. In other words is there a way to accomplish this instead of having separate .rdf files. These are very I/O intensive queries and I don't want all the queries to run when the user chooses to see only on of the Frames (views). Remember that in my report each frame has its own query.
    Any ideas ? Thanks in advance.
    My email is : [email protected]

    I apoligize for the multiple postings of the same item. Each time I tried, I got a jsp error but it successfully posted the item. I realized that only after three tries.
    Thanks

  • How to get data model to recognize structure change

    I have an extremely complex report that was built almost entirely manually -- except for using the Data Wizard to create the Data Model (multiple queries with multiple groups). The source view that the query Q-1 is based on has changed. It is a change in the precision of the column. How do I get the data model to notice that change? The Width in the Property Palette is still showing 8 when it should now be 16. This is causing the display on the report to be truncated to 8 characters.
    I don't want to have to rebuild the data model. It took me 3 days to get it so that it works!
    Thanks

    PLS OPEN THE QUERY AND THEN CONNECT USING YOUR USER. I THINK WHEN YOU REFRESH THE QUERY AND CONNECT THEN WIDTH IS CHANGE AS THE COLUMN IN THE DATABASE.(i.e. 16)
    THANKS,
    FAROOQ Thanks for the suggestion. Unfortunately, the same thing happens when I do this as happens if I modify the query with a space (as before); the rows are removed from their groups, and I lose the Source of my calculated fields.
    If anyone is interested, I finally found a way to do this:
    1. Convert the report into a text file (File>Administration>Convert);
    2. open the text file in a text editor;
    change the offensive WIDTH settings (make sure to look for all of them);
    3. save the text file;
    4. then convert it back to a RDF file using the converter.
    A round-about way to perform what should be an automatic operation -- but there it is.
    --V                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Special character '#' ODS data upload

    Hi experts!!
    I have to load R/3 data from PSA to ODS. I have found problems during data load with 0postxt field (description field) because in several FI documents there is '#' inside the text field, for example: "COMPANY X FOR # SALES".
    The PSA is upload fine but when the system tries to activate ODS data, it gives me an error in this register.
    I have checked RSKC transaction and it is defined '#' character as a permited character:
    ÇÉÀÇÊÈÏÌÅÉÒÙÁÍÓÚÑÑÈÍÌÓÒÚÙÉÈÍÌÓÒÚÙ·.'#
    What else can I check?
    Thanks a lot for your help.
    Kind regards,
    GP

    Hi,
    It may not be because of that.
    SID error comes during activation of ODS because the related MD is not available for assigning SIDs.
    Whenever Master Data is loaded SID's are generated for those Master Data records.
    Now when you load Transaction Data these SID's will be used (for the records which use above master data values). This results in performance gain.
    If Transaction Data is loaded first than the system checks for SID's. If they are not available system generate SID's. This results in a loss of performance.
    Now in the case if you don't have the setting selected (Further Processing Without Master Data/Always update data, even if no master data exists for the data) system will throw error No Sid’s found and load will terminate.
    So as a first step ensure that the related master data is loaded and Attribute change run has been triggered.
    OR
    Load the MD and Activate the MD (Modeling > InfoObject > Search the Infoobject > Right click > Activate Master Data)
    Once you perform this you can retrigger the activation. It should work fine.
    Else as a workaround you can blank out these particular values and activate.
    There is also one more workaround wherein you can create the Master data entries directly in BW itself. But both the above step should be done after consulting Business and considering data volume that needs to be edited/created.
    In most case once you perform the loading and activation of MD your activation should work fine when repeated.
    OR
    In the infopackage goto Update Tab and make the setting Update the records even if no master data exist and reload
    This may work.
    Try Searching in SDN for this Topic and you will find much detailed info as this is discussed very frequently.
    Thanks,
    JituK

  • Beginners guide to PowerPivot data models

    Hi,
    I've been using PowerPivot for a little while now but have finally given into the fact that my lack of knowledge about data modelling is causing me all kinds of problems.
    I'm looking for recommendations on where I should start learning about data modelling for Powerpivot (and other software e.g. Tablea, Chartio etc). By data modelling I mean how I should best organise all the data that I want to analyse which is coming fomr
    multiple sources. In my case my primary sources right now are:
    Our main MySQL database
    Google Analytics Data
    Google Adwords data
    MailChimp data
    Various excels
    I have bought two books - "Dax Formulas for PowerPivot" which is great but sparse on data modelling information and "Microsoft Excel 2013 - Building Data Models with PowerPivot" which looks excellent but starts of at I believe too advanced
    a level.
    Where should a beginner with no experience of data modelling, but intermediate/advanced experience of Excel go to learn skills for PowerPivot Data modelling?
    By far the main issues is that our MySQL databases are expansive and include hundreds of tables across multiple databases and we need to be able to utilise data from all of them. I imagine that I somehow need to come up with a intermediary layer between
    the Databases and Powerpivot which extracts and flattens the main data into fewer more important tables, but would have no idea how to do this.
    Also to be clear, I am not looking at ways of modelling the MySQL database itself - our developers are happy with the database relationships etc, it just the modelling of that data within PowerPivot and how to best import that data.
    Recommendations would be absolutely brilliant, its a fantastic product but right now I'm struggling to make the most of it.

    Thanks for the recommendations, I am aware of the last two of those and
    http://www.powerpivotpro.com/ in particular has proved very useful (TechNet less so). 
    I will take a look at SQLBI in more detail but from a very casual browse it seems like this too is targeted more at experienced users. There paid courses may definitely prove useful though.
    I think what I'm getting at is that there are probably an increasing number of people like myself who have fallen into PowerPivot without a traditional background in databases and data modelling. In my case I have a small business of
    15 employees and we were using Excel and PivotTables to do some basic analysis before soon discovering that our data was too complicated and that I needed something. PowerPivot definitely seems to solve that issue and I'm having much
    better success now than I was without. I also feel quite competent with DAX and actually building tables from the PowerPivot data model.
    What I'm lacking in is the very first step of cleaning and preparing raw data for import and then importing it into Powerpivot and setting up a efficient model. I have to be honest that your links above did bring
    PowerQuery to my attention and it seems like a brilliant tool and one of the missing links. I would however still like to see a beginners guide to data import and model set-up as I don't think I've yet come across one either in book or
    online form which explains the fundamentals well.
     

  • ODS data activation problem

    Hi,
    I have to load description from the flat file into the ODS since the ODS data needs to be a replica of the flat file.
    As the description is greater than 60 CHAR, I have split the description into 3 infoobjects in the transfer rule, using the individual line routine.
    After data is loaded into the ODS, the technical status as well as the total status is green, but when I activate the request for that corresponding load, the activation fails i.e. the data is present in the 'New Data' table, but it is not moving into the 'Active Data' table.
    Then, I tried a different method.
    I activated the setting in the ODS; 'Activate ODS object data automatically' and tried to load the same data with the same conditions to the ODS.
    This time the loading failed, giving multiple errors like;
    1) Value 'Absence Transactrion Dataload Failure ' (hex. '416273656E6365205472616E7361637472696F6E204461.
    2) Value 'ifying days ' (hex. '696679696E672064617973 ') of characteristic Z_LDES2 contains invalid cha.
    3) Activation of data records from ODS object DES3_ODS terminated.
    4) System error: RSDU_ANALYZE_TABLE_ORA/ ORACLE.
    5) Error getting SID for ODS object DES3_ODS.
    6) Error when assigning SID (details in long text).
    7) Error when assigning SID (details in long text).
    Please provide a solution for this.
    <b>*********Points will be rewarded*********</b>

    Hi Praveen,
    Thanks for the soltion.
    I checked in RSRV. There were no errors.
    So, I tried loading the data again. This time, I got the same error.
    But when I checked the contents of the Active table of ODS, the data was loaded, although in RSMO the status was RED.
    The laoding was successfull as of now, but lets hope this problem doesnt occur again.
    Please help, if you have any idea regarding this problem.

  • How to handle multiple tables data in Entity Beans?

    How to handle multiple tables data in Entity Beans?
    i mean, my bean (non trivial) is responsible for frequent
    insertion in one table and some deletion on another table.
    Can anyone of you...please..?

    Is your data model right? If you are adding in one and deleting in another it sounds to me more like a process that an entity, in which case you may revisit your data model and simplify it, add in a session bean with the process method to co-ordinate between the two.
    However, if you want to map multiple different tables within a single entity bean it is possible and just part of the mapping. How you actualyl specify it depends on which implementation you are working with.
    Cheers,
    Peter.

  • Prob in joining Query1 and Query2 in Data Model

    Hi,
    I m facing a prob. in joining Multiple queries
    Under data model I've created 2-3 queries which I've to join internally and in my Query1 only 1 bind variable is there, for which i've created a parameter
    but for Query2 and Query3 I m going to user one column value of Query1 as parameter.
    When i m doing this the Xml formed returns only Query1 value and Query2 and Query3 comes as blank.
    Eg.
    Query1 : select deptno,dname from dept where deptno=:p_deptno <:p_deptno is a parameter created in parameter list>
    Query2 : select empno,ename,mgr from emp where deptno=:deptno <where :deptno, i m expecting to come from Query1>
    but it not happening
    whereas my Xml comes as display below:
    <DATA>
    <Q2>
    <Q2_ROW>
    <DEPTNO>10</DEPTNO>
    <DNAME>ACCOUNTING</DNAME>
    </Q2_ROW>
    </Q2>
    <Q1 />
    </DATA>
    tanks in advance for replying
    Regards/goutam

    Personally, I have had a hard time doing what you are asking for using netui tags. I have had the same case, and asked the person in my team to just return a collection of value objects and then iterate through it without the repeater tag. To use the checkbox, I have had to use a String[].
              Kunal

Maybe you are looking for

  • How can I delete an account, BUT only after having saved data

    I need to delete my account from the iPhone BUT not before having saved the current data. How? My Calendar, Contacts, Bookmarks sync is not working. As a solution, I was told to delete account from the iPhone, reset the iPhone, create my MobileMe acc

  • Want to copy actual data to plan version for profit & cost center

    Hi, I want to copy data from actual to plan data for first half of the financial year. I was trying with T-Code CP98 . Are any Configration settings required to be done? But facing error "you have not selected a traget project"  Is there any other wa

  • When I click on pictures they will not enlarge

    when I go to a website and there is a photo of an article for sale and I click on the picture to enlarge, the new window opens up blank

  • Ipad Mini: Redirect to Twitter

    Hello, I seem to have a problem with my ipad mini. I recently just bought ipad mini a few weeks ago and I seem to be having this redirect problem in Safari and Google Chrome app. So far it seem to happen in only one website so far. It redirects to tw

  • REF CUR within FUNC

    I'm trying to check if rows exist on table_a - I'm using ref curs b/c need for dynamic FROM clause - getting message : PLS-00455: cursor 'L_REF_CUR' cannot be used in dynamic SQL OPEN statement vers 8.1.7.2.0 Thanks for help. CREATE OR REPLACE FUNCTI