Hierarchy with each Member of the child's repeated occurrences

I created a simple hierarchy in OBIEE Administration tool, as follows:

Hierarchy.JPG

When I create an analysis using this hierarchy, I would expect the following:

Expected.jpg

Instead, I'm multiple occurrences of each Member of the child, as follows. I do not know what is causing the failure, because none of these criteria, I have included in the analysis.

Actual.jpg

Take a look at the generated query physical if you are 100% sure of what groupping done OBIEE and from there you can find on the issue.

You can also start by dual control key you defined (Sun and hierarchy) and, of course, that I'm sure you didn't play too much with content levels to set some strange things, but they are well positioned to match your hierarchies, right?

Tags: Business Intelligence

Similar Questions

  • How can I switch phones with a member of the family without losing the data on a phone?

    How can I switch phones with a member of the family without losing the data on a phone?

    jkatts wrote:

    How can I switch phones with a member of the family without losing the data on a phone?

    Make a backup of each phone to iTunes or iCloud (do not forget to use your Apple ID or personal computer), then do whatever your carrier wants do you to change numbers if that's your intention, then restore these backups on the device of the "other."

  • Get the Parent for each record in the child

    Dear Experts,

    I have a table that contains the parent and child information. I need to make a request to get the parents of each book of the child table. I tried to write the query but does not get the expected results. Please help me.

    Table: relationship

    Parent of the child

    102 101

    103 102

    104 103

    106 105

    107 106

    109 108

    110 109

    Output:

    Expected child

    102 101

    103 102; 101

    104 103, 102, 101

    106 105

    107 106; 105

    109 108

    110 109

    Thank you very much

    Hello

    MU * 443499 * TR wrote:

    Dear Experts,

    I have a table that contains the parent and child information. I need to make a request to get the parents of each book of the child table. I tried to write the query but does not get the expected results. Please help me.

    Table: relationship

    Parent of the child

    102 101

    103 102

    104 103

    106 105

    107 106

    109 108

    110 109

    Output:

    Expected child

    102 101

    103 102; 101

    104 103, 102, 101

    106 105

    107 106; 105

    109 108

    110 109

    Thank you very much

    Why do you want to

    Expected child

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

    110 109

    Instead of

    Expected child

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

    110 109; 108

    ?

    You may want something like this:

    CONNECT_BY_ROOT SELECT AS children

    SYS_CONNECT_BY_PATH (parent, ';')  AS expected_output

    FROM table_x

    WHERE CONNECT_BY_ISLEAF = 1

    CONNECT BY child = parent PRIOR

    ;

    If you would care to post CREATE TABLE and INSERT statements for your sample data, and then I could test this.

  • Select a record for each Member of the Group

    Hello
    will have a table where in I'll take data for so many members of the group. I need to retrieve data for a particular group whose number of rows of data may be more in number (but I don't want only one row of data for each Member of the Group)

    Here is the query to retrieve all rows of data
    select RI.RESOURCE_NAME,TR.MSISDN,TR.ADDRESS1_GOOGLE, TR.MSG_DATE_INFO, FROM TRACKING_REPORT TR, RESOURCE_INFO RI 
    WHERE TR.MSISDN IN (SELECT MSISDN FROM RESOURCE_INFO WHERE GROUP_ID ='1' AND COM_ID=2 ) AND RI.MSISDN=TR.MSISDN 
     order by MSG_DATE_INFO
    This query result is...
    >
    DDD 12345 13 March 10 19:43:03
    EEE 54321 Tamilnadu, India 13 March 10 19:39:48
    DDD 12345 13 March 10 19:32:58
    EEE 54321 Tamilnadu, India 13 March 10 19:30:07
    DDD 12345 13 March 10 19:23:08
    EEE 54321 Tamilnadu, India 13 March 10 19:20:14
    FFF 98765 March 13 10 19:19:22
    DDD 12345 13 March 10 19:13:01
    EEE 54321 Tamilnadu, India 13 March 10 19:09:50
    DDD 12345 13 March 10 19:02:56
    EEE 54321 tn, ind March 13, 10 18:59:49
    DDD 12345 13 March 10 18:53:08
    EEE 54321 tn, ind March 13, 10 18:49:50
    DDD 12345 13 March 10 18:42:56
    EEE 54321 tn, ind March 13, 10 18:39:50
    DDD 12345 13 March 10 18:33
    EEE 54321 tn, ind March 13, 10 18:29:50
    DDD 12345 13 March 10 18:22:54
    EEE 54321 tn, ind March 13, 10 18:19:50
    DDD 12345 13 March 10 18:12:56
    EEE 54321 tn, ind March 13, 10 18:09:50
    DDD 12345 13 March 10 18:02:54
    EEE 54321 tn, ind March 13, 10 18:00:02
    FFF 98765 Tamilnadu, India March 13, 10 17:59:26
    FFF 98765 Tamilnadu, India March 13, 10 17:54:26
    DDD 12345 13 March 10 17:52:56
    EEE 54321 tn, ind March 13, 10 17:49:50
    FFF 98765 Tamilnadu, India March 13, 10 17:49:25
    FFF 98765 Tamilnadu, India March 13, 10 17:44:26
    DDD 12345 13 March 10 17:42:56

    >

    This output, I only want a new album for each member(ddd,eee,fff). That is to say
    >
    DDD 12345 13 March 10 19:43:03
    EEE 54321 Tamilnadu, India 13 March 10 19:39:48
    FFF 98765 March 13 10 19:19:22
    >

    How to change the query to do this...?

    Ok. I looked more carefully at your sample and it looks like you are looking for:

    SELECT  RI.RESOURCE_NAME,
            TR.MSISDN,
            MAX(TR.ADDRESS1_GOOGLE) KEEP(DENSE_RANK LAST ORDER BY TR.MSG_DATE_INFO),
            MAX(TR.MSG_DATE_INFO)
      FROM  TRACKING_REPORT TR,
            RESOURCE_INFO RI
      WHERE TR.MSISDN IN (
                          SELECT  MSISDN
                            FROM  RESOURCE_INFO
                            WHERE GROUP_ID ='1'
                              AND COM_ID=2
                         )
        AND RI.MSISDN = TR.MSISDN
      GROUP BY  RI.RESOURCE_NAME,
                TR.MSISDN
    / 
    

    SY.

  • Are there separate libraries for each Member in the family plan?

    We want to start the Apple family of music Plan in our House, but everyone in my family wants to add their own music and to keep it separate from the rest of the members of the plan.

    I have 2 questions about it:

    1. every member gets their own library of music that they can sort and customize without interfering with the music of other members?

    2. each member individually has the limit of 100,000 of the song, or is it 100 000 songs for the whole family?

    We will get the plan until these issues are addressed, if anything like that would be useful!

    Hi Josie1374,

    I understand that you have a few questions about the sharing of family in Apple music. I have some information for you which should be able to help answer these questions. First of all, you should know that each family member in the family of the Apple music-sharing plan will be themselves, individual account, Apple's music:

    A subscription to Apple's music for
    each Member of your family.

    With a family membership of Apple's music, up to 6 people in your family can enjoy unlimited access to music from Apple on their devices. Everyone gets full access and individual music library of Apple, recommendations of experts, radio world-wide 24/7 with 1 beats and radio on demand. This is the world of music for the creations of any

    iCloud - family sharing - Apple

    https://www.Apple.com/icloud/family-sharing/

    As is the case, this information applies to each individual account, which should solve your second question:

    How music Apple manages your downloaded songs

    • You can have up to 100 000 songs in your music library. Songs you purchased from the iTunes Store do not count against this limit.

    Add music to your collection to your music library Apple - Apple Support

    https://support.Apple.com/en-us/HT204925

    Be vigilant and thank you for visiting the communities of Apple Support.

  • Incorrect aggregation in parent after the deletion of data in any member of the child

    Hi Experts,

    Currently, we are facing a problem in which data are grouped correctly except parent level in cases where data were already present and has subsequently been removed. For example if '1000' has been seized in a child level member, it is correctly displayed in its parent. But when this figure is deleted, the Member of parent level is not up-to-date. If '1000' is replaced by any other character, it is correctly updated in the parent.

    Dimension in which the data are entered members 'Store' property and we use the AGG business rule to accumulate data at the parent level.

    The question preceding appeared in every month except February. I checked the parameters of the Member of the dimension "February," and he allied himself with the settings of all other months.

    Kindly guide me in this regard as to why this problem and its solution as possible.

    Thanks in advance!

    SYR

    Hi, try to set AGGMISSG ON math or you can set at the database level. Default setting is OFF

  • I have a problem with removing programs from the childs account.

    Original title: how to remove programs from my childs account?  He said that you are not allowed (as it should), but does not other options.

    I was cleaning my sons account and could not uninstall or remove most of the things.

    Its been a problem since I bought this new computer.   Some programs such as Adobe Flash, Chrome, etc. installed on my account, but not on other accounts.       They must be installed on each user account if they choose to use ie: Chrome, Adobe, Java etc.
    When Adobe Flash is installed for IE it is installed only on the user account that is not installed on the computer. So basically 3 accounts 3 downloads.
    Makes no sense.   However, some programs install to all accounts.
    When I uninstall a program from an admin account it does uninstall not other accounts 2 user.
    Logging into his account, I can't remove or uninstall.   I don't really want to delete the entire account.
    How can I accomplish this?
    Thanks, Denise

    Programs may vary in how they handle the installation and the removal of several accounts.
    I suggest to uninstall those that are a problem, temporarily change the account of the child to the administrator, connect you and make uninstalling and then change it back.   Not an elegant solution, but it should work.

  • Graph waveform repeats with each iteration of the loop

    Hi guys,.

    I got some great responses from you many already, so I hope you can help me once more!

    I try now to simply take a voltage that is measured by a sensor, I tied to AI1, and I built a graph of very simple waveform using a DAQ assistant. I have the setup terminal to CSR, the acquisition value continuous sample mode and read samples and rate game to a control on the Panel before which I can control myself. All this is a while loop that is needed to collect data over time.

    However, the problem I have is that for each loop of the loop, it seems, to reset the graph, so my x-axis never increases over time, ideally I want it to do is to show results through from 0 to 100 on the x-axis to say, and then, when it comes to 101, he will start again on the extreme left of the graphic to the right to a crossing another 100 points given) (there's a term for this, but I forgot, sorry!). To be honest, this kind of logic like everything in the loop will be restarted, but after trying to chart the loop it does not work, so I'm fresh out of ideas.

    I think I might have to do is to manually build segments of data acquisition (DAQ mx) and have only certain parts of them in the loop, although I can't be sure. I tried various examples and online on the database of NOR (including tension-int acq & graphic clk which works well in the examples, but not at my request) but no luck for now

    If anyone can think of what could be the problem, then please let me know. FYI the sensor is optical fiber if it makes a difference. I have attached the file VI that I did does not really...

    See you soon!

    Ritchie

    Since you use a chart there is no way to fix it. If you choose to go to a XY chart you could solve this problem. See the example below.

  • A new version of the parental control is available. We recommend that you update the PC of each Member of the family.

    When I connect to the Windows Live Family Safety website, it shows the opinion (in the title above) recommended that I upgrade to a newer version.  Next to this notice there is a link that says... 'install and set up parental controls'.  When I click on it to try to upgrade to a new version, need me a Windows Essentials page where it says nothing about an update.

    An attempt to update, I clicked on the symbol "Refresh" in the upper right corner of the programs parental control on each of the monitored computers, and all say they are refreshed and updated.  What is going on?  Why he continues to say that they all need new versions?

    PS. I am running Windows XP and control parental version 14.0.8118.0427.

    Hi Placebo12,

    We are happy to assist you with your concern. I understand that you wonder why the message shows up on the Family Safety website.

    The notice comes when it detects an older version of the parental controls installed on your computer. The latest version should be 15.4.3555.0308 for the 2011 version and 16.4.3505.0912 for the 2012 version. Since you're using the 14.0.8118.0427 build that is the 2009 version of the parental control, the site detects it as obsolete. Please note that the only Essentials 2009 version can be installed on Windows XP.

    If in the cases, it affects services and parental control functions, please let us know if we can help you.

    Thank you!

  • How to get the text to change with each image in the slideshow base

    Hi, I'm putting the different positions and text on three different images. When I saw the text just remains the same.  I tried to change individually, but it doesn't seem to work. I took images in Photoshop and make all the same size with compensation for the text to be included later in the Muse. Then I loaded the three images in the slide show and thumbnail to bring the image before and at the Center. But regardless I the title and text appear unchanged, even if the changes to the image.  I don't know what to do with the image and text together in Photoshop would do anything for type resolution when it was introduced to the Muse.  Any ideas please.  I enclose the schema where I wish to address three different types of job seeker.slide problem.JPG

    Hi brush them... you have checked the title text on your widget option?... Try again with different slidshows which shows the option.so of text you can add the text you want in each image/trigger...sorry my English and I hope to help you

  • How to scale objects in one layer with each object in the same position

    I have a card with symbols on it, placed exactly where they should be. Is it possible to scale all the objects in a layer or group to be bigger, but not treat them as a layer that is stretched to scale proportionally? Basically, how could I do each larger symbol as if each is to be climbed from their centres?

    I tried to select a layer so that each object is selected, and then transforming them (specifying a percentage of the scale). As a result, the objects are enlarged, but it produces the same results as a normal click and drag the corner alignment point. Any ideas?

    Object--> transform each. Each object / group object must be properly structured and selected individually.

    Mylenium

  • Should I use iCloud drive to share documents with a member of the family?

    My wife has retired and is buying an iPad Pro to replace his work computer.  It is not an advanced user.

    If she wants to keep a document, can send it to my iCloud for storing drive?  Works the family shares in iCloud drive, as in iCloud?

    I am less interested in sharing music etc to save some documents.

    Thank you.

    Well, it depends on how the device is connected. It has its own ID-Apple/iCloud? I would recommend that it should have its own, as sharing an iCloud or Apple ID may cause Messages, FaceTime, Notes, virtually everything to share between the two phones. Most people find it quite annoying.

    If it is signed with the ID Apple/iCloud then she would need to set up and use his own iCloud drive - it is not a part of the family sharing.

    If it is signed with your identifying Apple/iCloud, she can use your iCloud drive.

    You can also send your request of family sharing support iCloud drive from Apple here, if you wish: Apple - Feedback

    See you soon,.

    GB

  • .nomedia album with each image in the system does not

    There are issues like this in this forum, I did my research, but none of them has a solution.

    And this problem is annoying me. I see each image present on my cell phone in the application of the album.

    executives and stickers of a photo editor at the art of the music files and profile pictures album and what not.

    I was using another application to view the images, but I must admit that the default album app is better, but why is she not

    recognize .nomedia files and go on to show each picture.

    is there a solution to this. hope that they fix this in the next update. sony are listening.

    I now use "quickpic. came across the name in this forum itself for the same problem. Thanks to this guy.

    QuickPic done my job. It is less than 1 MB and works better the sony album App it's organized, fast and elegant even plays videos what else can I ask.

  • I WANT TO PRINT THE PDF WITH AUTO BROKEN IN HER OPTION. I HAVE THE FILE THAT HAS 500 PATIENTS LAB REPORT WITH EACH PATIENT OF THE ID OF THE PARTICULAR SAMPLE. HOW CAN I AUTO DASHED THEM WHEN PRINTING?

    Dear Sir.

    I have the pdf of the folder that has report 500 in it. Each report a particular sample id written on it. But this file is merged. How can I print this file using discontinuous auto? I need auto clip per patient.

    Thank you

    Thomas Deslandes

    If you can auto discontinuous batches in a single file depends on the printer driver. Check the printer manufacturer's documentation, or the forum.

  • How to share a file private with a member of the team also on CC?

    We have a few designers who are part of a CC for the sale of the teams.

    Is it possible to share files with only these individuals?

    We do not want to make public folders.

    Currently the links sharing files are public. Private file sharing is not available.

Maybe you are looking for

  • Tecra A2 and Ghost worm 8

    I am a user experienced with Ghost and have managed to create a startup disk with the correct NETWORK adapter for the Tecra A2. However what 2 floppy is inserted (which contains the GHOST. (EXE) program launches, but then crashes. Someone has experie

  • How can I get rid of popups to "iOs-tech-help?

    How can I get rid of popups to "iOs-tech-help? I can't open tabs or preferences

  • Changes made to the screw driver in the Interface of Simulation Toolkit (SIT) are not translated

    Hello I use Simulation Interface Toolkit to target a controller built in Simulink on a PXI target. I used the SIT connection manager to generate the driver screws I had to make some changes in the screw driver specifically Read.vi IO. I made the chan

  • Control when tip strip appears

    I'm having a problem trying to control when the band tip appears.  Suffice it to the Tip Strip to appear only when the LED is in a State of flashing and at any time.  I have attached my attempt at this. Thanks for your help.

  • Flash Player Adobe does not work so I can't see Youtube videos!

    My computer will not run Adobe Flash Player.  After several times to download the Flash Player download update, I get an error message about a missing system file.  Can someone help me diagnose and fix this problem, so that I can see the Youtube vide