Tagged Questions
The rollup tag has no wiki summary.
5
votes
1answer
102 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
2answers
46 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 ...
3
votes
1answer
307 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 ...
2
votes
1answer
239 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),
...
2
votes
1answer
121 views
Mimic `rollup` function on generic list
I have a generic list of type Element, for example.
public class Element
{
public string Country { get; set; }
public string City { get; set; }
public int Population { get; set; }
}
...
2
votes
1answer
458 views
I would like to combine ROLLUP with PIVOT - is that an option?
I have been using
SELECT
Author,
ISNULL(MAX(CASE Status WHEN 'Duplicate' THEN NumDocs END),'') AS Duplicate,
ISNULL(MAX(CASE Status WHEN 'Failure' THEN NumDocs END),'') AS Failure,
...
2
votes
1answer
442 views
How do I add totals/subtotals to a set of results without grouping the row data?
I'm constructing a SQL query for a business report. I need to have both subtotals (grouped by file number) and grand totals on the report.
I'm entering unknown SQL territory, so this is a bit of a ...
2
votes
1answer
350 views
Father-child and sales rollup
I have table of employees and column called managedby.
I want to roll actual and target figures up from employee to lead to manager to director and etc.
create table
(
empid int
,Name varchar(255)
...
1
vote
1answer
8 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 ...
1
vote
1answer
28 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
37 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 | ...
1
vote
1answer
156 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 ...
1
vote
1answer
182 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
89 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 ...
1
vote
3answers
215 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
...
1
vote
1answer
185 views
data feed for reporting table in oracle (rollup vs grouping sets)
I have a query:
select country_region,
country_subregion,
country_name,
calendar_year,
calendar_quarter_number,
sum(amount_sold) as amount
from countries co ...
1
vote
2answers
199 views
oracle sql group count
SELECT a,b,count(*)
FROM t
GROUP BY rollup(a,b)
result:
a1, b1, 10
a1, b2, 90
a1, , 100
i need:
a1, b1, 10, 100
a1, b2, 90, 100
how?
1
vote
1answer
472 views
Oracle SQL: ROLLUP not summing correctly
Rollup seems to be working correcly to count the number of units, but not the number of trains. Any idea what could be causing that?
The output from the query looks like this. The sum of the Units ...
1
vote
1answer
256 views
how to do a iterative rollup in sql
Hi I want to do a rolling sum (of valx) based on previous row value of rolling sum(valy) and the current row value of valx
valy=previousrow_valy + valx
animal valx valy
cat 1 1
cat 3 4 ...
1
vote
1answer
456 views
CSS & Javascript rollup file(s)
The Yahoo User Interface library offers rollup support if you use their CDN. I'm using Zend Framework 1.8.0 and was wondering whats he best way to go about replicating this so as all our css or ...
0
votes
2answers
37 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
...
0
votes
1answer
47 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 ...
0
votes
0answers
167 views
Getting ROLLUP Values Using JOIN
I have one table of historical log entries and one view that pulls in what is processes are currently running from certain locations.
I have been able to get a count of the total completed, total ...
0
votes
2answers
396 views
Syntax error in MySQL WITH ROLLUP query in MySQL Workbench?
Any idea why the following query syntax is wrong:
SELECT year, sum(profit)
FROM BASEDATA b
group by year WITH rollup
Error Code: 1064
You have an error in your SQL syntax; check the manual that ...
0
votes
4answers
342 views
Need to add “rollup” of entire dataset to bottom of DataGrid that is paged
In ASP.NET 3.5 I have a datagrid that is bound to a somwehat dynamic datatable. The datatable is created by taking three different tables returned from a dataset and combining them to create one ...
0
votes
2answers
798 views
help with oracle sql rollup
I've written a query to collect some data to display in an auto-updating box & whisker graph in excel. I'd like to use rollup to create summary rows for each type of train_line (PF and MJ) to ...
0
votes
1answer
773 views
mysql “with rollup” query morphed into a tree structure
Background:
I have this "with rollup" query defined in MySQL:
SELECT
case TRIM(company)
when 'apple' THEN 'AAPL'
when 'microsoft' THEN 'MSFT'
...
0
votes
1answer
267 views
Which Oracle version supports cube and rollup?
Particularly, Does it work with 9i Standard?
Do you have some easy example that'd allow me to check it?