The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
31 views

MySQL rollup ..

I have this SQL code create schema if not exists test; use test; drop table if exists contas; create table if not exists contas ( id_conta integer not null AUTO_INCREMENT, tipo enum('D', ...
0
votes
1answer
44 views

Minor tweaking of code for excel “Rollup”

I have the code from here: http://msdn.microsoft.com/en-us/libr...ice.12%29.aspx for making a Rollup (Merging Data from Multiple Workbooks into a Summary Workbook in Excel) it works great but I need ...
1
vote
1answer
56 views

Macro Needed to Rollup Mulitple Excel Files

I have multiple excel files that are structured identically and are in a folder. Each excel files data starts at d4 (multiple rows of data but all rows start on the subsequent d) I need a macro to ...
0
votes
0answers
89 views

Custom Rollup in SSAS

I have created in SSAS a cube that represents “the value of counters measured from network element in a period of time” so the structure of the cube will be as follow: Dimensions: - Time - ...
0
votes
0answers
53 views

mysql, multiple similar subqueries with rollup

My question has a couple of dimentions: I am working on a new query, which is based on THIS ARICLE. I need to create a series of rows, with column counts for each month . The values for the title ...
0
votes
1answer
20 views

Result column widths with derived tables and rollup

Consider these mysql queries: create temporary table t (a tinyint); insert into t values (1),(1),(2); select * from t; -- +------+ -- | a | -- +------+ -- | 1 | -- | 1 | -- | 2 | -- ...
0
votes
2answers
53 views

SQL Rollup last 4 weeks total

I have a table which I want to get the previous four weeks Order total in a query. But I want to return it with a SELECT (A total of the row's previous 4 weeks Order1 column - if they exist) ...
0
votes
2answers
318 views

CRM 2011 Rollup 12 Javascript errors

We recently upgraded to rollup 12 and we are now experiencing JavaScript errors being thrown whenever a grid related ribbon is presented containing ribbon customization the dialog message is stating a ...
0
votes
2answers
215 views

How to automatically insert a blank row after a group of data

I have created a sample table below that is similar-enough to my table in excel that it should serve to illustrate the question. I want to simply add a row after each distinct datum in column1 ...
1
vote
2answers
70 views

Alter Top 10 to equal 100 when rounded to 1 decimal place

I'm building a Top 10 for a report for some management information which ends with the following script: IF @ReportType = 'SectorEQ' BEGIN /* Final Select with roll up for total per portfolio */ ...
0
votes
2answers
101 views

SQL: Rollup without grouping

I'm trying to add subtotals to the bottom of my output to this code using ROLLUP, but it fails saying that they are not in a group. I don't want them grouped, I just want the subtotals at the bottom. ...
0
votes
3answers
64 views

Showing rollup in last line only

This is needed to work in both SQL Server 2005 and 2008 without having to adjust the compatibility level (if it can be done) Select CASE GROUPING([Store ID]) WHEN 1 THEN '[Store ID]' ELSE [Store ...
0
votes
2answers
117 views

Show a sum of the column at the end of the column in mssql 2008

In MsSQL 2008, I am trying to show the sum of 3 different columns at their end. Currently my query returns this is selected by (@grouping = maingroup,subgroup,subsubgroup,season,vendorid,[01] as ...
0
votes
1answer
51 views

How can I translate this unscalable query into a window function for dynamic columns?

I have a query that I use to generate the total order amount for customers and group them into columns by month alongside another column that represents total order amount. Here's the schema: ...
1
vote
2answers
113 views

Removing the NULL from Rollup Function

I am using the Rollup function and I am almost at the perfect point of what I need, just need to remove one little thing. declare @FromDate datetime declare @ToDate datetime declare @StoreNumber ...
0
votes
1answer
110 views

Mysql set label to Rollup or a similar GROUPING function like sql server

I have a problem with the ROLLUP, I have rows with null values, and the ROLLUP also returns null, how do I difference between the null values of the ROLLUP and the null values of the row? The null in ...
6
votes
3answers
583 views

Sum with SQL server RollUP - but only last summary?

I have this query : DECLARE @t TABLE(NAME NVARCHAR(MAX),datee date,val money) insert INTO @t SELECT 'a','2012-01-02',100 insert INTO @t SELECT 'a','2012-01-02',100 insert INTO @t SELECT ...
1
vote
1answer
52 views

Mysql Rollup repeatingid field

I have the following query result using group by with rollup: Divison Department Section Employee Name Employee ID Hours Assets Asset Strategy Not Defined Monty Mouse 480193 ...
0
votes
1answer
418 views

Are drill down, roll up, slice and dice, pivot supported by MDX query languange?

I read some resouces regarding multidimensional operation (roll up, drill down, slice, dice and pivot) and MDX query languange for my project. I know there are several standards in OLAP query. Are ...
0
votes
0answers
56 views

MySQL With Rollup exclude fields but still summarise them

I have a reasonably complex query which calculates leave figures across and organisation and then uses ROLLUP to summarise by department, division and section, for a given data range. This is working ...
2
votes
2answers
98 views

Add a row with totals for each column

I am trying to add a row to a SQL select query that contains a sum (or any other operation, such as an average, for that matter) as a last row. In this it is something similar to GROUP BY ... WITH ...
1
vote
0answers
146 views

Sql Pivot Table how do i make it?

Hi i want to ask something about my work select * from (Select m.Brand,u.Color,Count(Unit)as [Total unit] from Brands m inner join Products u on m.BrandID=u.ProductID Group by m.Brand ...
0
votes
1answer
50 views

Group by Highest Total Month

I am looking to order the MySQL statement below by the Module name (as it currently is) BUT only include the Modules that have the top 50 as far as the COUNT for all module_types included in the date ...
1
vote
1answer
296 views

ROLLUP only sums up distinct values in SQL Server 2008

SELECT ISNULL(Customer.Name, ' GRAND') AS CustomerName, ISNULL(Item.ItemName, 'TOTAL') AS ItemName, SUM(Item_Order.PriceAtDate) AS Price FROM Item_Order INNER JOIN Item ...
1
vote
3answers
97 views

rollup with limit?

I'm having trouble with one of my MySQL queries: SELECT id,Portfolio,Agency,Program,Objective,billion1,value11_12, Proportion1,billion,value12_13,Percentage,Difference, ...
2
votes
1answer
290 views

MySQL Sum(Total) and Sum(User) with ROLLUP

I am having a little bit of trouble with a complex MySQL Query. I am trying to get 3 columns from this query. The name of the Procedure, the Site Total of each procedure, and the Physician Total (user ...
1
vote
2answers
262 views

MySQL change last row of rollup

I am running a query for a report and am using rollup to get a total. One of my columns have a text field that is duplicating at the end. For example: SELECT * FROM transactions; transNum | ...
2
votes
2answers
398 views

Remove nulls from sub totals / grand totals in tsql rollup

I currently have a script below which aggregates some data using rollup: SELECT CASE WHEN GROUPING(Custodian) = 1 THEN 'Grand Total' WHEN ...
0
votes
1answer
53 views

Multiple Groupings inside a case statement & ordering

I'm currently working on an aggregation stored proc and my final select looks like this: SELECT CASE WHEN GROUPING(Custodian) = 1 THEN 'Grand Total' ...
0
votes
0answers
263 views

SharePoint 2010 rich media column in the content query web part

I'm creating a rollup of a custom content type which contains the new rich media column as one of its fields, using the Content Query Web Part (CQWP). Out of the box the CQWP renders the 'Rich Media ...
0
votes
1answer
170 views

Exclude columns from MySQL SELECT WITH ROLLUP?

Following on from this question I posed earlier, say I want to add ID to the query: SELECT client, ID, job_type, SUM(actual_value_fee) FROM jo2details GROUP BY client, job_type WITH ROLLUP but I ...
2
votes
1answer
181 views

MySQL WITH ROLLUP not showing what I expected

I'm trying to add some totals to my SELECT query but I'm struggling to see why this isn't working: SELECT client, job_type, actual_value_fee FROM jo2details GROUP BY client, job_type WITH ROLLUP ...
2
votes
2answers
115 views

How to group data correctly

My ultimate aim is to have a table that looks like this: Maturity Band AAA AA A A- BBB+ BBB- BB+ BB Total Less Than 1 yr 2.63% 5% 2% ...
0
votes
3answers
62 views

Is there a simple tool or a library for “rolling up” a set of events with timestamps into a count of events in each time window of a given span?

My specific problem is that I have a set of Apache access logs, and I want to extract from them a “rolled up” count of requests by grouping them into a set of time windows of a specified time. ...
2
votes
1answer
835 views

Pivot table with rollup and case statement in the Grouping function

I am trying to make a pivot table with rollup and a case statement in the grouping function.When the data in the column section of the pivot does not need to be altered my query works great, his is ...
1
vote
1answer
110 views

SQL group by with Rollup misunderstanding?

Ive read here about it ( use it rarely) but I have a problem understanding something : this is the datasource : according to this query : SELECT Country,[State],City, SUM ([Population (in ...
3
votes
2answers
251 views

Distinguish between NULL's when using “group by … with rollup”

When I run a query using group by ... with rollup: select a, b, sum(c) from <table> group by a, b with rollup; I get duplicate rows in (what I consider to be) the PK of the query (that is, ...
1
vote
1answer
77 views

Deaggrigate then apply With Rollup

need just a bit more tweaking to my query. I have a table that is filled with assignments and values such as this: a_inv assignment_id total ========================= 1 500 Then ...
0
votes
2answers
677 views

Postgres bulk update on rows using multi-column subqueries

I need to update all the rows in a table(parent table) with summary values (count, min, max) from child tables on 6 fields on the parent table tab1 (parent table) ------------------- tab1_ID ...
2
votes
1answer
1k views

MySQL only get overall ROLLUP

Performing a WITH ROLLUP when grouping by multiple fields, MySQL returns a rollup row for each group, as well as the overall summary: CREATE TABLE test (name VARCHAR(50), number TINYINT); INSERT INTO ...
1
vote
1answer
283 views

rollup ignores group by having constraint

+----+-------+-------+ | id | style | color | +----+-------+-------+ | 1 | 1 | red | | 2 | 1 | blue | | 3 | 2 | red | | 4 | 2 | blue | | 5 | 2 | green | | 6 | 3 | ...
3
votes
2answers
360 views

How to display rollup data in new column?

I have the following query which returns the number of android questions per each day on StackOverflow in the year of 2011. I want to get the sum of all the questions asked during the year 2011. For ...
0
votes
1answer
251 views

MySQL WITH ROLLUP returns incorrect (or unexpected) results

I have a set of data which defines ratings in a survey table for events at different locations. I am trying to display the average rating for each location with the average for all locations in the ...
1
vote
1answer
2k views

Is there a way to simulate GROUP BY WITH CUBE in MySql?

MySql supports GROUP BY WITH ROLLUP which will return aggregates for the last x of the n columns in the group by but does not support GROUP BY WITH CUBE to take all combinations of the n columns and ...
5
votes
1answer
195 views

jprofiler or other: how do I roll up recursive method calls?

I have a long operation that I want to profile in JProfiler (or other suggestions), but the method is very recursive, so the tree view in CPU View doesn't help very much. It shows me CPU times like ...
3
votes
1answer
2k views

How can I replace NULL category titles in MySQL ROLLUP function?

Using the MySQL query below, I have created a pivot table which is pretty much exactly what I am looking for. I would however like to replace the NULL values with actual descriptions, such as SubTotal ...
1
vote
1answer
222 views

SQL Server conditional rollup (only rollup when there are multiple subgroup)

I have the following SQL. Most of the G1 and G2 are one-to-one relationship. A few are one-to-many relationship. The following SQL will show too many "Total2". Is it possible to remove these Total2 ...
3
votes
1answer
2k views

group by clause with rollup

I'm trying to use group by with rollup clause within sql server 2005 but I'm having some problem. This is a simple dump create table group_roll ( id int identity, id_name int, fname varchar(50), ...
1
vote
3answers
529 views

Oracle: replace “rollup” in query with something else

I need to rewrite a simple query without rollup function. Could you help me? This is an original query: SELECT e.department_id, e.job_id, SUM(e.salary) FROM EMPLOYEES e ...
3
votes
1answer
774 views

How can I use MySQL GROUP BY modifier WITH ROLLUP in Zend_Db_Select?

The SQL query in my web application(PHP/MySQL + Zend) uses a number of parameters to build the search query. However, the records fetched should be grouped by two columns to get sub totals. WITH ...

1 2