What is the user of the table of contant of the LTS

Hi all

can we create a measurement base shaved with hierarchies?

What is the user of the column option (global content group by) on the content tab

When I select the option column, under table I can find at any table and logical column section all the columns in the table

It is only for the aggregation tables (content tab (content global group, by)?)
or any other use of it?

Thank you
Françoise

Françoise,

Example of creating Sources for each level of aggregate data is

In addition to creating the source of the table of facts together, you create sources table logical dimension corresponding to the same levels of aggregation.

NOTE: If already exist sources at each level, you need not create new ones. You must have a source at each level specification total contained at least referenced.

For example, you might have a monthly sales table containing a precalculated amount of revenue for each product in each store each month. You must have the other three sources, one for each of the logical dimension referenced in the example tables:

Another for the logical table produced with one of the following contained specifications:
o by logical level: ProductDimension.ProductLevel
o by column: Product.Product_Name
* A source for the logical table of store with one of the following contained specifications:
o by logical level: StoreDimension.StoreLevel
o by column: Store.Store_Name
* A source for logical time table with one of the following contained specifications:
o by logical level: TimeDimension.MonthLevel
o by column: Time.Month

Source: http://download.oracle.com/docs/cd/E12103_01/books/admintool/admintool_BusModSetup14.html#wp1028871
Fix? ;)

Thank you
saichand.v

Tags: Business Intelligence

Similar Questions

  • INTERFACE design - what is the best way to allow the user to define a kind of infusion at various times (non-periodic)?

    I want to allow the user to specify a curve like this:

    Such as some under - VI shows the A2 value when a variable of time is between R1, A1 when the time variable is between A2 and A3 when time is in the range A3.

    My design looks like this:

    With the error checking that looks like this:

    My question is, is the approach of the table according to optimal? Otherwise, how could combat this?

    I think I can summarize the conversation on this point as a response to the original question (what is the best way...) -to start writing code, to think about what you want to accomplish and write it down (otherwise known as 'Write the first Documentation').  One of the points of a good User Interface is that it is not allow users to "stupid mistakes" - it leads the user "by hand", limiting the entries to the "legal values" and demanding that the entries be made logically.

    If you were going to have a list of Infusions to enter, it is therefore logical to decide or not to enter into time intervals (which are always > 0) or order the times (which, logically) are still growing.  You can (and should) decide that you (or you may have a control that allows the user decide, but maybe it's too flexible) and then apply your "rules".

    Let's say you've decided on "Intervals" (which seems to me to be more User Friendly).  After the user has entered the intervals (and you've provided a nice plot of perfusion vs. time), pouvez allow you the user to an interval of 'split', 'Delete' an interval, or "Edit the Infusion" interval, or you can decide to have a choice more simple "accept or start again" - If you have only a few intervals, the last would be the simplest (and therefore best) design choice.

    Spend more time thinking before coding usually pays Big dividends!

    (Speaking of sad experience) Bob Schor

  • What is the best way to have an indicator that scrolls the content of a table that is updated during the execution of a program?

    I have a program that runs continuously. During this time the errors are produced and I store them in a table. What is the best way to display the table in a window that the user can scroll upwards or downwards, while the program is running?

    Thank you.

    Hi chuck,

    If allowing you to feed two tables to the table you will see also all of these channels in the table

  • What is the potential security risk to give 'any analysis' to a role or a user of 11.2.0.3 base data?

    What is the potential security risk to give 'any analysis' to a role or a user of 11.2.0.3 base data?

    Thank you

    Larry

    What is the potential security risk to give 'any analysis' to a role or a user of 11.2.0.3 base data?

    This is a HUGE security risk.

    Any person who uses the ANALYZE statement may accidentally or INTENTIONALLY, destroy the overall system performance.

    Just look at what the ANALYZE statement can do:

    https://docs.Oracle.com/CD/E11882_01/server.112/e41084/statements_4005.htm

    Goal

    Use the ANALYZE instruction to collect statistics, for example, to:

    • Collect or delete statistics on an index or index partition, table or table partition, table held in index, cluster, or scalar object attribute.

    The ANALYZE statement has been deprecated for statistics for the DBMS_STATS package.

    But what happens if the real and accurate data use by your important questions have been removed or replaced with nonsense, invalid statistical totall?

    You could bring your system to its knees INSTANTLY. The system could start making full of HUGE tables table scans instead of using an appropriate index.

    TERRIBLE, TERRIBLE thing to do to grant this privilege unless absolutely necessary.

  • What is the difference between cached and no cached TT tables

    Hi all

    I have three users in my Timesten

    User Admin 1.TimesTen - cache
    2 - cacheuser user cache manager
    3.cbs_owner user schema (which is the same name as the user of oracle schema)


    I have a few groups of cache in timesten for oracle tables, I created some tables on user schema TTs to compile tables pacakges.these not associted with groups of cache;


    My question is what is the difference between cahed tables (tables associted with cache groups) and not cached (associted with any group of cache) TTs schema user, nice tables want to help me

    example-

    Command > tables;

    CBS_OWNER. ACCOUNT_SUBSCRIBER / / table belongs to the Group of cache
    CBS_OWNER. OFFER_REF / / not belogs to any group of table cache



    Thank you
    -AK

    Published by: AK08 on June 13, 2010 23:30

    I just started to investigate TimesTen... and I think that the cache groups allow you to replicate data to and from Oracle. for example
    -Group of cache Read-Only: spreading tables cached in Oracle to TimesTen.
    -Group of asynchronous/synchronous cache: spreading the Oracle data.
    -User managed group cache: no automatic update or spread.

    No cached tables do not have the features of spread.

  • Query SQL with multiple tables - what is the most effective way?

    Hello I learn PL/SQL. I have a simple procedure, where I need to find the number of employees and departments by location according to location_id user input.

    I have 3 Tables:

    LOCATIONS
    Location_id (pk)
    location_name
    ...
    DEPARTMENTS
    department_id (pk)
    Location_id (fk)
    department_name
    ....
    EMPLOYEES
    employee_id (pk)
    department_id (fk)
    Employee_Name
    ....

    1 location can have 0 - SEVERAL departments
    1 employee has 1 Department

    Here's the query I come up with for PL/SQL procedure:

    / * Ecount, Dcount are variable NUMBERS * /.

    SELECT SUM (EmployeeCount), COUNT (DepartmentNumber)
    IN Ecount, Dcount
    Of
    (SELECT COUNT (employee_id) EmployeeCount, department_id DepartmentNumber
    Employees
    GROUP BY department_id
    HAVING department_id IN
    (SELECT department_id
    Ministries
    WHERE location_id = userInput));

    I get the correct result, but I wonder if my query is on the right track and if there is a more "efficient" method to do so.
    Thanks in advance for help a beginner.

    Hello

    Welcome to the forum!

    Something like this will be more effective:

    SELECT    COUNT (employee_id)               AS ECount
    ,       COUNT (DISTINCT department_id)     AS DCount
    FROM       employees
    WHERE       department_id IN (     SELECT     department_id
                        FROM      departments
                        WHERE      location_id = :userInput
                      )
    ;
    

    You should also try a join instead of the IN subquery.

    For efficiency, do only the things you need to do.
    For example, you need not a number of employees in each Department, in order to not calculate one. This means that you will not need the notice online, so do not have.
    You needn't PL/SQL for this work, so don't use PL/SQL, if you do not have to (I know this question was out of context, then you may have good reasons to do this in PL/SQL.)

    Perform all the filtering as soon as possible. Do not waste it effort on the things that will not be used.
    An example of this is: never use a HAVING clause when you can use a WHERE clause. What is the difference between a WHERE clause and a HAVING clause? The WHERE clause is applied until the aggregate functions are calculated and the HAVING clause is applied after; There is no other difference. Therefore, if the HAVING clause is not reference an aggregate function, it could be done in a WHERE clause instead.

  • What is the physical meaning of automatic indexing of table entry...

    What is the physical interpretation of the automatic indexing. ?

    You wire up a table on the edge of a loop, it sequentially will index the table for you as he travels the loops. A While loop will also do this, but it is much more common on loops For, therefore, loops For making automatically while the While loops must be 'right click' and said to the index in the array. Get it?

  • What is the best browser to use for a home user?

    What is the best browser to use for a home user,

    original title: browser

    It's really a matter of personal preference. He has Firefox, Chrome, Safari and many more. They have differences, but as long as you have a decent security program, it is really important that you use. Try a few and see what you think. They are easy to install and easy to remove. Most will import your Favorites during the installation.

  • What is the best way to clean all the files of the user of a PC under Win98?

    What IS THE BEST WAY to CLEAN ALL USER FILES FROM A PC the wIN98

    Hi Col BROWN,

    Please see the following article on how to perform a clean install:

    http://support.Microsoft.com/kb/221829

    In addition, for more information, please see the following article:

    http://support.Microsoft.com/kb/835826

    I hope this helps!

  • LDIF syntax error: what is the reason of this failure when you try to import the new user

    What is the reason of this failure when you try to import the new user, followed the book syntax

    C:\Users\Administrator\Documents>ldifde-i f Newusers.ldf
    Connecting to "practice01.testa01.com".
    Registration as current user using SSPI
    Import directory of the file "Newusers.ldf".
    Loading entries.
    There is a syntax error in the input file
    Failure on line 3.  The last token starts with 'C '.
    0 entries modified with success.
    An error has occurred in the program

    Hello

    The question you have posted is related to LDIFDE with Active Directory in a domain environment, and would be better suited to the TechNet community. Please visit the link below to find a community that will provide the best support.

    http://TechNet.Microsoft.com/en-us/default.aspx

  • What is the process to remove or change user profiles in windows xp sp3?

    Let me know, what is the procedure to change or remove the user account in windows xp service pack 3?

    Hi varun,

    Click Start--->Panel---> user accounts---> click to change the account that you want to 'Edit' or 'delete '. You must be a user with administrative rights to perform this task.

    Note: If you are not already in "Classic view", you can do it in the left panel.

    Good luck.

  • What is the best way to create a limited user account?

    I'm trying to set up a user account which only allows access to the media, optical drive (read-only, if possible), programs 3 cards and records in a folder that is not visible to this account. What is the best way to go about this?

    Thank you!

    Hello

    You can check the links that has information about the types of accounts of user below.

    Types of user accounts: http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/ua_c_account_types.mspx?mfr=true

    Overview of user accounts: http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/usercpl_overview.mspx?mfr=true

    How to create and configure user accounts in Windows XP: http://support.microsoft.com/kb/279783

  • What are the causes of the log of user account on missing cursor in Windows XP? I have two trays of office that they have this same problem. If you restart them the cursor returns?

    What are the causes of the log of user account on missing cursor in Windows XP? I have two trays of office that they have this same problem. If you restart them the cursor returns?

    Hi DaddyJeff,

    1. don't you make changes before the show?
    2. are you referring to the cursor in the area of user password on the login screen of Windows?
    3. when the cursor goes missing, the mouse pointer works on screen?

    It is difficult to say what is causing this problem. If the mouse pointer freezes or stops working, then we recommend you to reinstall the mouse. To do this, try the following steps:
    a. sign in to Windows.
    b. Click Start, click Run, type devmgmt.msc, and then click ok.
    c. in the list of objects, expand mice and other pointing devices.
    d. right click on the sub element and click on uninstall.
    e. unplug the mouse and plug it back.
    f. the Device Manager, select an item in the list, click the Action menu, click scan for hardware changes.
    g. check if the mouse is detected, if so, then install it.

    See mouse USB which is connected to a USB 2.0 hub is not detected by Windows XP


    Note:
    if the problem persists, restore the computer to an earlier time. See How to restore Windows XP to a previous state

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • What is the role that the user points?

    What is the role that the user points? Who can tell me

    Reoddy

    You will find the information here:

    http://en.community.Dell.com/Dell-groups/new-to-community/f/3511/t/19566154

    Bev.

  • What is the value of registry key "Default" in HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders

    What is the value of registry key "Default" in HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders

    Hello

    (Default)                            REG_SZ (value not set)
    {3D644C9B-1FB8-4f30-9B45-F670235F79C0} REG_EXPAND_SZ %PUBLIC%\Downloads
    Common AppData REG_EXPAND_SZ ProgramData %
    Common REG_EXPAND_SZ Office %PUBLIC%\Desktop
    Common REG_EXPAND_SZ %PUBLIC%\Documents Documents
    Common programs REG_EXPAND_SZ %ProgramData%\Microsoft\Windows\Start start\program
    Common Start Menu REG_EXPAND_SZ %ProgramData%\Microsoft\Windows\Start Menu
    Common Startup REG_EXPAND_SZ %ProgramData%\Microsoft\Windows\Start Menu\Programs\Startup
    Common models REG_EXPAND_SZ %ProgramData%\Microsoft\Windows\Templates
    REG_EXPAND_SZ CommonMusic %PUBLIC%\Music
    REG_EXPAND_SZ CommonPictures %PUBLIC%\Pictures
    REG_EXPAND_SZ CommonVideo %PUBLIC%\Videos

    You can do a Reg file copying between the lines and paste into Notepad and save as a. REG file as
    UserShellFolders.REG

    --------------------------------------------------------------------------------------------

    Windows Registry Editor Version 5.00

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\explorer\User Shell Folders]
    "Common Desktop" = hex (2): 25, 00, 50, 00, 55, 42, 00, 00 4 c 00, 49, 00, 43, 00, 25, 00, 5 c, 00,------.
    44,00,65,00,73,00, 6B, 00, 74, 00, 6f, 00, 70, 00, 00, 00
    "Common document" = hex (2): 25, 00, 00, 50, 00, 55, 00, 42, 00, 4 c, 49, 00, 43, 00, 25, 00, 5 c,
    00,44,00, 6f, 00, 63, 00, 75, 00, 6 d, 00, 65, 00, 6F, 00, 74, 00, 73, 00, 00, 00
    "CommonPictures" = hex (2): 25, 00, 50, 00, 55, 42, 00, 00 4 c 00, 49, 00, 43, 00, 25, 00, 5 c, 00,------.
    50,00,69,00,63,00,74,00,75,00,72,00,65,00,73,00,00,00
    "CommonMusic" = hex (2): 25, 50, 00, 00, 55, 00, 42, 00, 4 c 00, 49, 00, 43, 00, 25, 00, 5 c, 00, 4 d,
    00,75,00,73,00,69,00,63,00,00,00
    "CommonVideo" = hex (2): 25, 00, 50, 00, 55, 42, 00, 00 4 c 00, 49, 00, 43, 00, 25, 00, 5 c, 00, 56,------.
    00,69,00,64,00,65,00, 6f, 00, 73, 00, 00, 00
    "{3D644C9B-1FB8-4f30-9B45-F670235F79C0}" = hex (2): 25, 50, 00, 00, 55, 00, 42, 00, 4 c, 00,------.
    49,00,43,00,25,00 5 c 00, 44, 00, 6f, 77, 00, 00, 6F, 00, 6 c, 00 6f 00 61 00, 64, 00, 73,------.
    00,00,00
    "Common Start Menu" = hex (2): 25, 00, 50, 72, 00, 00 6f 00, 67, 00, 72, 00, 61, 00, 6 d, 00, 44,------.
    00,61,00,74,00,61,00,25,00, 5 c, 00, 4 d, 00, 69, 00, 63, 00, 72, 00, 6f, 00, 73, 00, 6f, 00,------.
    66,00,74,00 5 c 00, 57, 00, 69, 00, 6F, 00, 64, 00, 6f, 77, 00, 00, 73, 00, 5 c, 00, 53, 00, 74,------.
    00,61,00,72,00,74,00,20,00, 4 D, 00, 65, 00, 6F, 00, 75, 00, 00, 00
    "Joint programmes" = hex (2): 25, 50, 00, 00, 6f 72, 00, 00, 67, 00, 72, 00, 61, 00, 6 d, 00, 44, 00,------.
    61,00,74,00,61,00,25,00, 5 c, 00, 4 d, 00, 69, 00, 63, 00, 72, 00, 6f, 00, 73, 00, 6f, 00, 66,------.
    00,74,00 5 c 00, 57, 00, 69, 00, 6F, 00, 64, 00, 6f, 77, 00, 00, 73, 00, 5 c, 00, 53, 00, 74, 00,------.
    61,00,72,00,74,00,20,00, 4 d, 00, 65, 00, 6F, 00, 75, 00, 5 c, 50, 00, 00, 72, 00, 6f, 00, 67,.
    00,72,00,61,00, 6 D, 00, 73, 00, 00, 00
    "Common Startup" = hex (2): 25, 00, 50, 72, 00, 00 6f 00, 67, 00, 72, 00, 61, 00, 6 d, 00, 44, 00,------.
    61,00,74,00,61,00,25,00, 5 c, 00, 4 d, 00, 69, 00, 63, 00, 72, 00, 6f, 00, 73, 00, 6f, 00, 66,------.
    00,74,00 5 c 00, 57, 00, 69, 00, 6F, 00, 64, 00, 6f, 77, 00, 00, 73, 00, 5 c, 00, 53, 00, 74, 00,------.
    61,00,72,00,74,00,20,00, 4 d, 00, 65, 00, 6F, 00, 75, 00, 5 c, 50, 00, 00, 72, 00, 6f, 00, 67,.
    00,72,00,61,00, 6 D, 00, 73, 00, 5 C, 00, 53, 00, 74, 00, 61, 00, 72, 00, 74, 00, 75, 00, 70, 00,------.
    00.00
    "Common AppData" = hex (2): 25, 00, 50, 72, 00, 00 6f 00, 67, 00, 72, 00, 61, 00, 6 d, 00, 44, 00,------.
    61,00,74,00,61,00,25,00,00,00
    "Models of communes" = hex (2): 25, 50, 00, 00, 6f 72, 00, 00, 67, 00, 72, 00, 61, 00, 6 d, 00, 44,------.
    00,61,00,74,00,61,00,25,00, 5 c, 00, 4 d, 00, 69, 00, 63, 00, 72, 00, 6f, 00, 73, 00, 6f, 00,------.
    66,00,74,00 5 c 00, 57, 00, 69, 00, 6F, 00, 64, 00, 6f, 77, 00, 00, 73, 00, 5 c, 00, 54, 00, 65,
    00, 6 D, 00, 70, 00, 6 C 00, 61, 00, 74, 00, 65, 00, 73, 00, 00, 00

    ------------------------------------------------------------------

    Hope these helps.

    Rob - bicycle - Mark Twain said it is good.

Maybe you are looking for