Is a set of possible consolidation in Dicoverer of results?

Hi all

I have to give results in the following format in the observer.

Col1.value1
Col2 col3 col4 col5
val1 val2, val3 val4
Val5 val3 val2-val4
Col1.Value2
Col2 col3 col4 col5
val1 val2, val3 val4
Val5 val3 val2-val4

I tried to put Col1 asa page point but whn I want to see if the values for < all > to Col1.
The result apppears set, but donot col1 values and results are not grouped by col1.

The only thing I could do was display results as follows, and then do a kind group:

K1 col2 col3 col4 col5
val1 val2, val3, val5 val4
val1 val2 val3 val4 val5

Is that all we can do? ...
Please advice...

Thank you
VJ

Hi Vj
You cannot make discoverer display results grouped into sets. The only things we can do are:

1. use the Page elements
2. use group them Sorted
3 use a crosstab with display either online or a schema

We can make discoverer to change the method of aggregation to use Grouping Sets, but this applies to all queries from there on. You had to do this by changing the preferences of the discoverer backstage in the pref.txt file and change the parameter called EnhancedAggregationStrategy to 1. Here is the note of in the file:

The controls use features of increased aggregation of data i.e. Rollup, Cube, Grouping Sets
0 is regular use Group By,
1 == grouping strategy Set - SQL will contain only Grouping Sets needed by server of discoverer,.
2 == automatic determination - Grouping Sets of option 1 with additional levels of aggregation using rollups preloading,
3 == cube strategy - generates a cube of all group elements.
4 == allow the code to choose between options 1, 2 and 3

You can find your default value is already 1.

Best wishes
Michael

Tags: Business Intelligence

Similar Questions

  • Virtual machine set up their: consolidation of necessary virtual machine disk.

    a virtual machine guest: set up number: consolidation of necessary virtual machine disk.

    I click on this virtual machine > > snapshot > > Consolidation.then about a minute.

    He failed: cannot access < unspecified file name > file because it is locked

    02.jpg

    This question well in the base backup tool VADP Storage API. This file is locked by worker VPXA get. Then restart (host managegemnt connection) services vpxa and spend on your host and redo the consolidation 1) disable alarm processing host connection failure and failure of network connection (to avoid unnecessary alarm0 2) connection to the host through ssh) 3 run # /etc/init.d/hostd restart and restart # etc/init.d/vpxa, 4) re-do the consolidation of the vm.

  • Error code 8004B065when set up parental controls. As a result, it will be implemented.

    Original title: ERROR 8004B 065 WHEN YOU set UP PARENTAL CONTROL AND as a RESULT will not be IMPLEMENTED

    I'm Tess of the parenbtal on my pc controls - I downloaded the software, but when I connect live and then 'activate' controls on a user account, I get this error that prevents the implementation of controls

    Hello

    1. What is the full error message you get when the task fails, if any?

    2. who is the software that you are talking about?

    3. is this program Windows Live parental controls from Microsoft or a third party program?

    4. using the built-in parental controls in Windows 7?

    If you downloaded Windows Live parental controls in Microsoft, I suggest you to visit these links for more information on how to set up parental controls on the computer.

    In addition, for more information on the functionality of control Parental of Windows 7, check out these links.

    http://Windows.Microsoft.com/en-us/Windows7/products/features/parental-controls
    http://Windows.Microsoft.com/en-us/Windows7/help/videos/using-parental-controls
    http://Windows.Microsoft.com/en-us/Windows7/what-can-I-control-with-parental-controls
    http://Windows.Microsoft.com/en-us/Windows7/set-up-parental-controls

    If the problem is only with the parameter setting on the Live account and you use Windows Live Family Safety program, I suggest you to post the question on the support forum for Windows Live. Please find the link below.

    http://www.windowslivehelp.com/product.aspx?ProductID=4

    Hope the information is useful.

  • How to find the full set of possible characters?

    So I can write characters of other alphabets

    See:

  • Possible consolidation in vSphere? starting points?

    Hello

    As part of a research projeract, I have a script that I need all the computers virtual traffic to a dedicated vm individual.

    I have 3 Vms VM1, VM2, VM3.  And I have a fourth VM VM_GATE_WAY all connected to the standard vswitch on an esxi host.  What I need is if there is a way to configure machines in such a way so that all traffic of VM1, VM2, VM3 moves first to VM_GATE_WAY, and the VM_GATE_WAY whereas it passes to the adapter of physical link to which is connected the vswitch.

    Same is necessary when the opposite happens that all traffic directed to VM1, VM2, VM3 from the first going outside through VM_GATE_WAY, then to the respective virtual machines. I've been looking for this, but nothing done yet.

    If anyone has an idea how to proceed or if anyone can give some tips to help me get started, it must be very appreciated.

    Thank you.

    Once the port group is created, just remove the uplinks of this group of ports:

    http://i.imgur.com/AL0Tx.PNG

  • How to set the default value for the search results per page?

    RH8 RoboHelp HTML. TOC published is published with a search option and search results per page default is 10. Where can I reset it to something like 20 or 30 (the table of contents has a lot of room so that a large number of returns).

    Look at the whform.js file in the folder of release of Webhelp for var gnMaxRslt = 10; and change the number here.

    See www.grainge.org for creating tips and RoboHelp

    @petergrainge

  • Set the ID to each group of result

    Hi all

    I have this problem to assign the serial ID to each group result for my SQL. Say if I want to date 11 data group and my result returned 5 groups to date. Is there a way I can create a SQL statement that can assign IDS for each group of date without using "GROUP BY"? Using example count() on total perhaps?

    Use the analytical DENSE_RANK function

    with c as
    (
    select sysdate DT,1 ID,'VAL1'  VAL FROM DUAL UNION ALL
    select sysdate DT,2 ID,'VAL2'  VAL FROM DUAL UNION ALL
    select sysdate DT,3 ID,'VAL3'  VAL FROM DUAL UNION ALL
    select sysdate-2 DT,4 ID,'VAL4'  VAL FROM DUAL UNION ALL
    select sysdate-2 DT,5 ID,'VAL5'  VAL FROM DUAL UNION ALL
    select sysdate-4 DT,6 ID,'VAL7'  VAL FROM DUAL UNION ALL
    select sysdate-4 DT,7 ID,'VAL6'  VAL FROM DUAL UNION ALL
    select sysdate-4 DT,8 ID,'VAL8'  VAL FROM DUAL UNION ALL
    select sysdate-5 DT,9 ID,'VAL9'  VAL FROM DUAL )
    SELECT DENSE_RANK() OVER (ORDER BY TRUNC(DT) DESC ) RN, DT,ID,VAL
    FROM C
    /
    
            RN DT                ID VAL
    ---------- --------- ---------- ----
             1 13-AUG-10          1 VAL1
             1 13-AUG-10          2 VAL2
             1 13-AUG-10          3 VAL3
             2 11-AUG-10          4 VAL4
             2 11-AUG-10          5 VAL5
             3 09-AUG-10          6 VAL7
             3 09-AUG-10          7 VAL6
             3 09-AUG-10          8 VAL8
             4 08-AUG-10          9 VAL9
    
    9 rows selected.
    
  • Programmatically set the result expression of filtering

    Hi all

    Is it possible to set configuration > Report Options > Expression of filtering results by program?

    I am developing a custom step framework, so I would do this without a reminder of movie file.

    Thanks in advance.

    Kind regards

    ACE

    You can access the filter expression via RunState.Root.Locals.ReportOptions.ResultFilterExpression from anywhere in your sequence.

    -Jack

  • is it possible to add HERE with my pack of photographers?

    I have the Pack of photographers and would like to add HERE, but it seems much more expensive with that ps and lr set, is possible to add it on, and not as a major expense?

    Your plan of photography is a special offer... all simple plans are at the regular rate creative cloud plans pricing and membership | Adobe Creative Cloud

  • How to set the tag probing with my traffic shaping script work.

    Hello.

    So, I tried really get my head around the crowd but I'm missing something, if someone could give advice it would be appreciated. I read the excellent information of Shanklin Carter, but I of course understand certain aspects.

    I use this script to set my traffic shaping, it works brilliantly.

    -


    $esxhost = "esx401".

    $pgName = "vmotion".

    $VMHost = get-VMHost $esxhost

    $HS = $VMHost | Get-View

    $nwSys = $HS.ConfigManager.NetworkSystem

    $mor = get-views $nwSys

    $portgrp = new-Object VMware.Vim.HostPortGroupSpec

    $portgrp. VlanId = 901

    $portgrp. Name = $pgName

    $portgrp. VswitchName = $vswitchName

    $portgrp.policy = new-Object VMware.Vim.HostNetworkPolicy

    $portgrp.policy.shapingPolicy = new-Object VMware.Vim.HostNetworkTrafficShapingPolicy

    $portgrp.policy.shapingPolicy.enabled = $true

    $portgrp.policy.shapingPolicy.averageBandwidth = 700000000

    $portgrp.policy.shapingPolicy.peakBandwidth = 700000000

    $portgrp.policy.shapingPolicy.burstSize = 1

    $mor UpdatePortGroup ($pgName, $portgrp).

    -


    I want allow failover vSwitch Beacon Probing and substitution, but I'm unable to navigate in the hierarchy of the CROWD and the managed objects.

    I'm trying to use:

    $portgrp.failureCriteria = new-Object VMware.Vim.HostNicFailureCriteria

    then set the CheckBeacon, etc. on the following lines.

    PowerGUI shows the values that you type in but I don't see them for the checkBeacon. I can see these for the sake of traffic shaping.

    Your ideas and suggestions are appreciated.

    Thank you

    Darren.

    (@dawoo)

    Have you ever watched setting beacon probe via Powershell ?

    This thread is pointing my Portgroup - how to set up the consolidation of network cards that contains a code example that shows you also the beacon probe the objects and properties.

    ____________

    Blog: LucD notes

    Twitter: lucd22

  • Filtering results in responses for set operations

    Hello

    I've created a report combining the results using set operations. I added the same filter field for each select included in the combined result. Then, I created dashboard page prompt to create a filter for this report. But the results not filtered. Other requests registered on the same page filtered, so that the filter works in general.
    My question is: is it possible to filter the combined result?

    Published by: scanbix on January 25, 2010 07:08

    Hello
    Each 'combined request' filtering must be filtered without probs, Im guessing you are referring to filter the complete set of results / final, but you may notice that you do not have access to columns on the definition of the outer query / wrapper in the criteria tab to add filters or "is invited" on all columns.

    Just checked on my example and your rights in your finds, the view filter returns "request has no filters" even when the guests of my dashboard are clearly alter the data returned by each part of the union.

  • When you use the search bar, it is possible to get results of the search in a new tab?

    In the old Google toolbar, it was possible to display the search results in a new tab, Google toolbar is compatible with Firefox 7, so I have to use the Firefox search bar. However, he always gets results the research in the current tab. Can this be changed?

    Yes. Open a new tab and type or paste Subject: config in the address bar, press enter and press ENTER again to override the warning. Then stick browser.search.openintab in the filter area that shows, and then double-click the browser.search.openintab to activate (it will switch to "BOLD").

    If you had rather an add-on simply do the above for you and add a menu option for it, try this:
    https://addons.Mozilla.org/firefox/addon/searchOnTab/

    You can also type a search in the search bar and press on alt + enter in instead of just enter to open your search in a new tab.

  • I have 2 sets of two xy graphs, I would have both appear on only two graphs (as opposed to four)

    I have a program that runs a set of parameters once forwards and graphical results on the graph 'A' and then performs the same settings, but back and graphics of these results on the chart "B". The graphics are in the loop 'For' so that they have a hard time with the other wire communication. I would like to as the two sets of coordinates to display on a graph

    If you would be re-architecture of your code as a state machine, it should be only a single loop. Try it.

    (Hurries are the loops? Do you need to be able to watch itereactively as graphics build or is it enough to chart all at once at the end?)

    In addition, why are you doing all these successive writing for file operations? You cannot concatenate the strings and add to the queue in a single operation?

  • How to find AUTO_SAMPLE_SIZE set at the DB level?

    Version: 11.2.0.4

    OS: RHEL 6.4

    We use below collect stats procedure for gathering statistics for our tables.

    exec dbms_stats.gather_table_stats (-)

    ownname = > 'QMP, -.

    tabname = > 'HRTB_MASTER ', -.

    estimate_percent = > DBMS_STATS. AUTO_SAMPLE_SIZE, -.

    Cascade = > TRUE;

    method_opt = > 'for all THE COLUMNS of SIZE AUTO '.

    );

    We use a custom procedure that runs dbms_stats.gather_table_stats for the selected tables.

    Lately that gather employment stats took longer. When we checked DBA_TABLES. SAMPLE_SIZE these tables, we noticed that it is 100%. That is to say Oracle is 100% sampling.

    We thought that DBMS_STATS. AUTO_SAMPLE_SIZE was 10%, by default. How can I determine DBMS_STATS. AUTO_SAMPLE_SIZE currently set at the level of the DB? Google search did not help

    It's a shame the manuals do not tell you anything on the algorithm and particularly the effect of the global preference APPROXIMATE_NDV setting to true.

    Check the result of:

    Select dbms_stats.get_prefs ('approximate_ndv') of double;

    If the result is "true" then you have activated the mechanism of approximate_ndv for the collection of statistics on the table and Oracle will use 100% the size of the sample of auto. The advantage of this is that is don't do massive unique on each column to get the num_distinct, and it will get the correct answer to about 1.5% in time to make a small percentage using the older mechanism. If this is the case in your system, as has been pointed out by Stefan, the extra time can result from several work to calculate a number accumulated histograms; It can also disappear for large sample sizes used for indexes more.  NOTE: even with auto to 100% on the table with approximate_ndv, histograms, and index, always use the same sample old 'auto '.

    Here is a link that will take you to a whitepaper on the subject if you are interested: https://jonathanlewis.wordpress.com/2009/03/20/hotsos-2009/

    There are some side effects, however, which could have a significant impact on a few unfortunate, for example: https://jonathanlewis.wordpress.com/2014/03/02/auto-sample-size/

    Concerning

    Jonathan Lewis

  • Consolidation of VM

    I just manually moved a computer virtual of VCenter 4.1 to 5.5 with all new hardware.  This virtual machine had two separate folders that have been appointed to the same thing.  I copied both files to the new volumes and registered the virtual machine.  Before you turn I had to remove 2 disks, he could not find and re-add-the with their new location.  I just deleted the drive but did not choose to delete also the files (I probably would have deleted the files I guess).  Anyway, everything is up and running and works well, but the summary VM, he tells me to consolidate records.  What is the result of do not delete the files when I deleted the drives?  The fix is as simple as going to the host - right click from the virtual machine and choose consolidate under snapshot?  Is there something I need to worry or make the first before trying this?  Can I do this while the virtual machine is online?

    Thank you.

    I don't think it will cause problems. The important part is that you don't drop a snapshot with the disks back in place. Maybe the message of Consolidation came as a result of the changed paths! Is there something in the . file vmsd that contains an absolute path to a virtual disk? If this isn't the case, you should be able to improve the current situation either by the 'Consolidation', or by creating another cliché followed by running 'Delete All' in snapshot Manager (assuming that basic disks are thin not updated in service, and you're not low disk space).

    André

Maybe you are looking for

  • Tecra 8200 Boot and install os!

    I have a tecra 8200, cd player no longer works, so I bought a new... The floppy driver has also been broken, but I just bought a new floppy driver external usb. Everything works fine on windows, but I want to reinstall my OS, but I can't boot from th

  • Satellite A660 - beep when the CPU is not loaded

    Hello, I have another problem with my new Satellite A660-1FL. I replaced the built-in hard drive of Hitachi against the many Toshiba MK3265GSX quieter. Now I always hear a beep when the processor is not loaded. It's especially annoying when I read th

  • Personal security, Windows Vista Edition Home Premium

    My old laptop [son computer] has a program on this subject called Says 'Personal security', it was installed 12/09/09.  He is tied to the computer.  It displays the my system is endangered and wants me to pay for the activation of the program. When I

  • How to disable notification 'Get Windows 10' of the taskbar?

    * Original title: 10 Windows and taskbar Anyone know how to get rid definitely an upgrade of windows 10 come in my task bar, I already had on my other computer I deleted the list "windows update", he disappears from the bar and then when I reboot but

  • is there a site to download plug-ins in Korea of blackberry?

    I want to download the plug-in for Microsoft Visual Studio BlackBerry !