Several views Vs multiple Analyses

Hello

I design dashboard 21 boards that share the same columns (columns 22). Each dashboard contains Analyses of 5-10 (each analysis using 2-4 columns), which are from the same columns.

Currently, they created the only analysis and derived from multiple views, each view, we used only 2-4 columns and excluding the remaining columns.

We use the line charts, Bar charts, selector display and table views.

Is that a better performance to use only single analysis and several views? or by using individual analysis?

Our database has less amount of data, support of size for the full load, it will take 2 hours.

Raineau

An analysis with multiple views is a better approach that the query only a single keystroke data.

Please check if correct/useful.

Tags: Business Intelligence

Similar Questions

  • Why is Mozilla informs against several profiles for multiple users?

    I think I want to establish a separate profile to Firefox for my children, my wife, and myself but Mozilla Web site advises against using multiple profiles, unless there is a developer. I'm now on Firefox 3.6.3. I had multiple profiles for one year on previous versions of Firefox and it seemed to do what I wanted. Is there a better way to do this? No technical reason not not to use profiles of boards?

    You can use the Profile Manager to separate profiles of browsers. Everything works very well.

    The warning on the article use the Profile Manager to create and delete profiles of Firefox is probably for several reasons:

    • The Profile Manager can be confusing finding a way access and use
    • It is mainly used as a troubleshooting step and the user interface so that it could go away or change to the future of Firefox version.
    • It is easy for less experienced users to do dangerous things like stuck in a new profile, or accidentally delete the default profile.

    But I don't see how using Firefox profiles offer an advantage over Windows user accounts. There is no real password protection, anyone can delete / see / use other profiles, and the user interface is poor.

    That being said, many people use profiles to manage different versions of Firefox without problems.

  • Several view sessions, same PC?

    View 6.0.1 Client 3.3.0

    Can I have multiple sessions to see from the same computer? In other words

    • Launch customer Horizon View, connection and access your desktop
    • Launch customer Horizon still seen once, to connect under a different name and access another computer in office
    • Repeat this until I have open at the same time

    The reason that I ask is that we are migrating from Exchange to Gmail. Google provides a utility called RANGE that, in a larger environment, can be run from multiple machines with each machine migration from one part of the alphabet. Instead of using 10 physical machines, I would use rather 10 desktops from view. This work slick if my real PC I can access all the desktops of 10 reviews. I'll use a different login account to access each office.

    Yes you can do it with new clients, but with older clients, you need to use the switch - standalone.

    You are not able to?

  • lining up guests in several dashboard data sources / analysis

    Hi all

    I need to create a dashboard multi-source with several queries and analysis pointing to different datamarts through several business sector. These datamarts share common dimensions but prompt values can be passed from one subject to another sector. The only thing I've found is to duplicate prompted controls such as the button drop-down list and radio, then pass the values selected with variables of presentation as default values.
    Problem is, once selected, controls duplicate values cannot be cleaned, redefinition and initialized again with different values.

    Does anyone know of a clever way to reset the values of the quick controls without having to manually click on the reset button? Or another way to manage this multi source dashboard / queries?

    Any help appreciated.

    Concerning
    Laurent

    Check out this link.
    http://Shahin-OBIEE.blogspot.com/2011/10/reset-button-on-OBIEE-11g-prompts.html

    Enter the code on window.onload
    something like
    < script >
    Window.OnLoad = function() {return PersonalizationEditor.removeDefaultSelection (false)};
    < /script >

    If brand aid

    Published by: Srini VIEREN on February 26, 2013 09:29

  • Several Viewer sign-in Adobe?

    How many people can sign in the viewer Adobe under the an Adobe ID? I want to send an application to several people about a company and use Adobe ID of the Compnay

    * Possibility: a hundred people can sign in the Adobe Viewer on their individual iPads under this Adobe ID companies to see a preview of this app.

    Thank you!

    Currently, there is no limit. It is subject to change.

  • VMware View 4 multiple monitors deliver

    I installed the trial of vmware view 4, but has difficulty to

    to work multiple monitors.  I've implemented a manual offices with a pool

    unique virtual machine running on ESX.  The group is configured to use PCOIP

    only.  I installed the client on a windows XP computer and I can't

    launch the client to view and connect without problem.  I select more than

    Monitors.

    What I get is small windows XP screen, in the middle of my two monitors, say

    a resolution of 800 x 600 and the rest is black.  The two monitors that I use on the terminal

    are 1600 x 1200 and it's max resolution that I put in the Office

    Group.

    If I try to full screen, I get similar behavior, only through a

    monitor.  I confirmed that my

    resolutions are identical on the two screens on the terminal and that they

    are configured horizontally.

    Has anyone got this working?  Is it

    something simple, I am doing wrong?  Any

    help would be appreciated.

    After you set up the offices for multi-monitor pool you completely turn off the virtual machine? The settings will not take effect until it has been powered down at least once. A restart / reset will not work.

    WP

  • Creating a view using multiple joins - by reducing the number of output lines

    It is difficult to put into words exactly what I want to implement, so I'll just use an example. Let's say I have the following database:

    game (id, time, place)

    Reader (game_id, name)

    Referee (game_id, name)

    Foreign keys:
    Player (game_id) references game (id)
    Referee (game_id) references game (id)

    It is a very special match, in which:
    A game can have 1 to many players
    A game can have from 1 to several arbitrators

    I want to create the following view:

    Game_overview (Game_id, time, player, referee)

    It's easy to create this view with the following output:

    Game1, 15:00, player1, Referee1
    Game1, 15:00, player1, Referee2
    Game1, 15:00, player2, Referee1
    Game1, 15:00, player2, Referee2
    Game1, 15:00, Joueur3, null
    08:00, player1, Referee1, GaMe2
    GaMe2, 08:00, player1, Referee2

    HOWEVER, I want it to look like this:

    Game1, 15:00, player1, Referee1
    Game1, 15:00, player2, Referee2
    Game1, 15:00, Joueur3, null
    08:00, player1, Referee1, GaMe2
    GaMe2, 08:00, null, Referee2

    I think that this should not be TOO difficult to solve, but I can't really get my head around it.

    Welcome to the forum!

    Whenever you have a problem, please post CREATE TABLE and INSERT statements for your sample data. Sinve it's your first post, I'll do it for you:

    CREATE TABLE     game
    (       id          VARCHAR2 (10)     PRIMARY KEY
    ,     time          VARCHAR2 (10)
    --,     location     VARCHAR2 (10)     -- No need to include columns that play no role in this problem
    );
    
    INSERT INTO game (id, time) VALUES ('Game 1',  '3PM');
    INSERT INTO game (id, time) VALUES ('Game 2',  '8AM');
    
    CREATE TABLE     player
    (       game_id          VARCHAR2 (10)
    ,     name          VARCHAR2 (10)
    );
    
    INSERT INTO  player (game_id, name) VALUES ('Game 1',  'Player 1');
    INSERT INTO  player (game_id, name) VALUES ('Game 1',  'Player 2');
    INSERT INTO  player (game_id, name) VALUES ('Game 1',  'Player 3');
    INSERT INTO  player (game_id, name) VALUES ('Game 2',  'Player 1');
    
    CREATE TABLE     referee
    (       game_id          VARCHAR2 (10)
    ,     name          VARCHAR2 (10)
    );
    
    INSERT INTO  referee (game_id, name) VALUES ('Game 1',  'Referee 1');
    INSERT INTO  referee (game_id, name) VALUES ('Game 1',  'Referee 2');
    INSERT INTO  referee (game_id, name) VALUES ('Game 2',  'Referee 1');
    INSERT INTO  referee (game_id, name) VALUES ('Game 2',  'Referee 2');
    

    In this way, people who want to help you can recreate the problem and test their ideas.

    In addition, to say what version of Oracle you are using. The following query will work in Oracle 9.1 or more.

    What you asked is what I call a Query, fixed-price , and this is a way to do it:

    WITH     player_plus     AS
    (
         SELECT     game_id
         ,     name
         ,     ROW_NUMBER () OVER ( PARTITION BY  game_id
                                   ORDER BY          name
                           )         AS r_num
         FROM    player
    )
    ,     referee_plus     AS
    (
         SELECT     game_id
         ,     name
         ,     ROW_NUMBER () OVER ( PARTITION BY  game_id
                                   ORDER BY          name
                           )         AS r_num
         FROM    referee
    )
    SELECT       g.id
    ,       g.time
    ,       p.name     AS player_name
    ,       r.name     AS referee_name
    FROM             player_plus     p
    FULL OUTER JOIN  referee_plus   r  ON   p.game_id     = r.game_id
                                    AND     p.r_num          = r.r_num
    JOIN           game          g  ON     g.id          = COALESCE (p.game_id, r.game_id)
    ORDER BY  g.id
    ,         COALESCE (p.r_num, r.r_num)
    ;
    

    Output:

    ID         TIME       PLAYER_NAM REFEREE_NA
    ---------- ---------- ---------- ----------
    Game 1     3PM        Player 1   Referee 1
    Game 1     3PM        Player 2   Referee 2
    Game 1     3PM        Player 3
    Game 2     8AM        Player 1   Referee 1
    Game 2     8AM                   Referee 2
    

    I see that you have more arbitrators than players in a game. If such was not the case, then you might make it a bit more efficient using a LEFT OUTER JOIN between p and r, rather than a FULL OUTER JOIN, and you can also use only the columns of p where I use COALESCE.

    Published by: Frank Kulash, March 9, 2012 18:15
    Fixed spelling

  • DAQmx several channels of multiple devices

    Hello

    General question here. If I use two devices that are exactly the same, what I can and if I use DAQmx task to read the analog inputs alone? Or is it better to use a task for each device?

    Thank you

    Hello

    Actually does not have a single task to read from multiple devices.  You will get the error 200558.  You must create a separate task for each device.

    Hope that helps!

    d

  • Cannot enlarge the thumbnail view in my analysis of file

    The thumbnail views are 10 across the page.  You will have to show all my scans of large miniature views.

    (1) download and install the free Win XP PowerToy TweakUI.

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    Windows XP downloads
    http://Windows.Microsoft.com/en-us/Windows/downloads/Windows-XP
    (Search for TweakUI featured downloads tab)

    When the program is installed, open it and go to...
    Explorer / thumbnails... to change the quality and
    maximum size of 256 pixels.

    (2) If you download and install Windows Live Photo
    Gallery... He has a slider that allows the size of the thumb
    adjusted tbe nails.

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    Windows Live Photo Gallery 2011
    http://explore.live.com/Windows-Live-Essentials-Photo-Gallery-get-started
    (There are other apps when you)
    install... uncheck those you don't want to)

  • Several views of web with a set of action items

    I am currently working on an app that has three different webviews and there is a drop down to switch between the three different webviews. Each webview is located in a different container and the list drop-down leather / reveal containers but my action points are: back, Forward and Refresh

    I managed to get the update to work with the three webviews action item:

    onTriggered: {
                        if (container1.visible == true) {
                            webView1.reload()
                        } else if (container2.visible == true) {
                            webView2.reload()
                        } else if (container3.visible == true) {
                            webView3.reload()
                        }
                    }
    

    However, I can't seem to replicate the same functionality with the back and the points of action forward

    enabled: webView1.canGoBack || webView2.canGoBack || webView3.canGoBack
                    onTriggered: {
                        if (container1.visible == true) {
                            webView1.goBack()
                        } else if (container2.visible == true) {
                            webView2.goBack()
                        } else if (container3.visible == true) {
                            webView3.goBack()
                        }
                    }
    

    Pressing the follow-up activity will backward for the first webview and will not work for the other two.

    The three webviews are all on one page so if anyone knows a way to get the action element back working with the views of three web, then that would be great

    I assume that you have 3 WebView side-by-side and that they can be visible or not, so at some point, you have all 3 on the same screen and hitting return should make all go them back, right?

    If so, in the onTriggered section, remove any occurrence of "else".

    It should look like this (sorry for the formatting, I'm on mobile):
    If {(container1.visible)
    webView1.goBack)
    }
    If {(container2.visible)
    webView2.goBack)
    }
    If {(container3.visible)
    webView3.goBack)
    }

    If I was mistaken in my understanding of your application and you have 3 single WebView appears at once, then your code looks good to me, but you can change your formula activated as long as the rear action can be activated, even if the visible WebView can not go back.

  • Adobe Captivate 9.0 eLearning SCORM 1.2 course re - opens and starts on the last slide on several views

    Having users who comment after the view and complete a project with quiz questions and click on, when they re - opened the course to resume, the course opens on the last slide of the project... any reason or any workaround?  Thank you

    CV data (bookmarks) are enabled by default. You can disable it in Quiz preferences, reports, under the Advanced button

  • Several views of head &amp; sync posts

    This might be better suited for a bug report, but I have created several head angles and only get the sync on the front position.  I use triggers to switch between the positions of head.  Initially, I thought that the problem could be in my construction of puppets, so I opened the Wendigo puppet in character animation but I encounter the same problem with it.  Any angle except the front head does not meet the audio (or flashes, incidentally).  The head always moves in response to the movements of the General head on the webcam.  Someone at - it no picture of this, or a similar experience? I use the host character Preview 3 x 124 2013 Mac pro with el capitan (10.11.2).

    Hey fergull,

    I had the same problem, and I've been frustrated because I looked everywhere for the answer. I even read through all the documentation, but they leave on an important point. When you create subfolders in PS with profiles and three quarters and then integrate this puppet character animator, you add a behavior to each folder in ChA. To do this, click the tab of the puppet, then select all the folders that you want to apply the behavior and then in the right side click on '+' by behaviors, then select the face. Then you will have independent controls on the behaviour of face and your puppet should work fine after that.

    Dave Wolf

  • Update of several columns on multiple tables

    Hello

    I try to update several columns on two different tables, and I would like to know how to proceed in a SQL statement.

    I have the data I want to update in this SQL statement...

    #####################################

    Select srv. X_SERVICING_DEALER as 'The merchant name', -(want to update this column)

    SRV. X_SERVICING_SITE as ' dealer # ', -(want to update this column)

    dlrx. ATTRIB_50 'Région',--(tiens à mettre à jour cette colonne)

    dlrx. ATTRIB_49 as 'District', -(want to update this column)

    DLR.x_zone_cd as 'Zone'-(want to update this column)

    Of

    s_srv_req srv,

    s_org_ext dlr,

    s_org_ext_x dlrx

    where dlr.row_id = srv.pr_con_org_id

    and dlr.row_id = dlrx. par_row_id

    and srv.row_id = 1-1RSEXAV';

    #####################################

    Any guidance would be appreciated.  Thanks in advance.

    Chris

    > I'm trying to update several columns on two different tables, and I would like to know how to proceed in a SQL statement.

    You can not.  Only one table can be updated at the same time.

  • Storage Vmotion of several disks on multiple LUNS

    Hi, I'm under ESXi 4 Update 2 and have a file server with hard on multiple LUNS, I need to migrate the drives out of the old array to storage and from our new.  I want to do online, if anyone knows how to do a vmotion storage disks residing on different LUNS that need to stay on different LUNS?  Thanks a bunch,

    Chris

    using the advanced option when "change you data store" will allow you to separate the files to disc, or basic moves all disk files associated with the guest in question to the same LUN.

  • several selections to several layers or multiple folders with a go?

    Hello

    How to convert multiple selections in multiple layers or multiple files with a single blow?

    Thank you!

    Take a look at this script: http://photoshopscripts.wordpress.com/2012/12/09/split-to-layers/

Maybe you are looking for