Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

65
votes
9answers
13k views

Count(*) vs Count(1)

Just wondering if any of you guys use Count(1) over Count(*) and if there is a noticeable difference in performance or if this is just a legacy habit that has been brought forward from days gone past? ...
32
votes
5answers
20k views

How to use GROUP BY to concatenate strings in MySQL?

Basically the question is how to get from this: id string 1 A 1 B 2 C to this: id string 1 A B 2 C
29
votes
2answers
2k views

What are Aggregates and PODs and how/why are they special?

This FAQ is about Aggregates and PODs and covers the following material: What are Aggregates? What are PODs (Plain Old Data)? How are they related? How and why are they special? What changes for ...
21
votes
4answers
3k views

Repository Pattern: how to Lazy Load? or, Should I split this Aggregate?

I have a domain model that has the concept of an Editor and a Project. An Editor owns a number of Projects, and a Project has not only an Editor owner, but also a number of Editor members. ...
19
votes
4answers
475 views

How do I get a SUM to calculate properly with a join?

So I'm trying to count the number of parts, number of tasks, the quantity in each job and the time that it took to manufacture each job but I'm getting some funky results. If I run this: SELECT ...
18
votes
3answers
3k views

Aggregate Relational Algebra (Maximum)

I am currently working on a homework assignment that requires a selection to occur that pulls out an element containing a specific attribute of maximum value compared to all other records. I've read a ...
16
votes
1answer
261 views

C# About IEnumerable<T>.Aggregate

I did some tests about IList<T>.Aggregate(), but the answer does not make sense to me. List<int> Data1 = new List<int> { 1,0,0,0,0}; var result = ...
15
votes
5answers
4k views

What Belongs to the Aggregate Root

This is a practical Domain Driven Design question: Conceptually, I think I get Aggregate roots until I go to define one. I have an Employee entity, which has surfaced as an Aggregate root. In the ...
13
votes
7answers
511 views

Does COUNT(*) always return a result?

If I run a query such as: SELECT COUNT(*) as num FROM table WHERE x = 'y' Will it always return a result, even when the query doesn't match any record? Or do I need to validate and make sure a row ...
13
votes
3answers
974 views

How do you handle associations between aggregates in DDD?

I'm still wrapping my head around DDD, and one of the stumbling blocks I've encountered is in how to handle associations between separate aggregates. Say I've got one aggregate encapsulating Customers ...
9
votes
3answers
103 views

SQL Server aggregate performance

I am wondering whether SQL Server knows to 'cache' if you like aggregates while in a query, if they are used again. For example, Select Sum(Field), Sum(Field) / 12 From Table Would SQL ...
9
votes
2answers
179 views

When is aggregate initialisation valid in C++11?

Lets say we have the following code: #include <iostream> #include <string> struct A { A() {} A(const A&) { std::cout << "Copy" << std::endl; } A(A&&) { ...
9
votes
3answers
663 views

Aggregate Function on Uniqueidentifier (GUID)

Let's say I have the following table: category | guid ---------+----------------------- A | 5BC2... A | 6A1C... B | 92A2... Basically, I want to do the following SQL: SELECT ...
9
votes
5answers
7k views

C#: How to use the Enumerable.Aggregate method

Lets say I have this amputated Person class: class Person { public int Age { get; set; } public string Country { get; set; } public int SOReputation { get; set; } ...
8
votes
6answers
300 views

Am I breaking my aggregate boundaries?

I'm modeling a very basic ASP.NET MVC app using NHibernate and I seem to be stuck on my design. Here's a sketch of my model: As you can see this is VERY basic but I have some concerns about it. ...
8
votes
10answers
2k views

Why are SQL aggregate functions so much slower than Python and Java (or Poor Man's OLAP)

I need a real DBA's opinion. Postgres 8.3 takes 200 ms to execute this query on my Macbook Pro while Java and Python perform the same calculation in under 20 ms (350,000 rows): SELECT count(id), ...
7
votes
1answer
561 views

Aggregate by week in R

In R I frequently aggregate daily data (in a zoo) by month, using something like this: result <- aggregate(x, as.yearmon, "mean", na.rm=TRUE) Is there a way that I can do this by week?
7
votes
1answer
188 views

Is it ok to call specifications from an aggregate factory for validation, or does that validation call belong in a unit test (DDD)?

I have created a factory and a set of specifications to create and validate an aggregate root. Currently I have some tests for the factory that call the specifications on the product of the factory, ...
7
votes
4answers
287 views

How to do Linq aggregates when there might be an empty set?

I have a Linq collection of Things, where Thing has an Amount (decimal) property. I'm trying to do an aggregate on this for a certain subset of Things: var total = myThings.Sum(t => t.Amount); ...
6
votes
2answers
387 views

DDD, Entity Framework, Aggregate Entity Behavior ( Person.AddEmail, etc)

Here's a simple example of a problem I'm running across that is not meshing with some of the ideas presented here and other places regarding DDD. Say I have an ASP.NET MVC 3 site that ...
6
votes
5answers
479 views

R: aggregate a dataframe on a given colum and display another column

I have a dataframe in R of the following form: > head(data) Group Score Info 1 1 1 a 2 1 2 b 3 1 3 c 4 2 4 d 5 2 3 e 6 2 1 f I ...
6
votes
2answers
420 views

Strategies for Real-Time Aggregations in MongoDB

In exploring ways to do real-time analytics with MongoDB, there seems to be a fairly standard way to do sums, but nothing in terms of more complex aggregation. Some things that have helped... ...
6
votes
2answers
325 views

Aggregating hourly data into daily aggregates

I have an hourly weather data in the following format: Date,DBT 01/01/2000 01:00,30 01/01/2000 02:00,31 01/01/2000 03:00,33 ... ... 12/31/2000 23:00,25 What I need is a daily aggregate of max, min, ...
6
votes
2answers
329 views

MySql second-smallest element in each group

I have a table similar to the following: date | expiry ------------------------- 2010-01-01 | 2010-02-01 2010-01-01 | 2010-03-02 2010-01-01 | 2010-04-04 2010-02-01 | 2010-03-01 ...
6
votes
6answers
280 views

Only keep min value for each factor level

I got a problems that bugs me for some time… hopefully anybody here can help me. I got the following data frame f <- c('a','a','b','b','b','c','d','d','d','d') v1 <- ...
6
votes
2answers
974 views

How do I concatenate strings in Entity Framework Query?

How do I concatenate strings in Entity Framework 4 I have a data from a column and I want to save as a string a comma separated string like "value1, value2, value3" Is there a method or an operator do ...
6
votes
1answer
273 views

Evaluating the mean absolute deviation of a set of numbers in Oracle

I'm trying to implement a procedure to evaluate the median absolute deviation of a set of numbers (usually obtained via a GROUP BY clause). An example of a query where I'd like to use this is: ...
6
votes
2answers
2k views

composed_of in Rails - when to use it?

When should you use ActiveRecord's composed_of class method?
6
votes
4answers
1k views

Performance of COUNT SQL function

I have two choices when writing a SQL statement with COUNT function. SELECT COUNT(*) FROM SELECT COUNT(some_column_name) FROM In terms of performance what is the beast SQL statement? can I ...
6
votes
3answers
835 views

DDD: subclasses & root entities

Let's say I have the typical entity Car class Car : Entity { public double MaxSpeed { get; set; } public Color Color { get; set; } /* ... */ } This entity, in my domain model, would be ...
6
votes
7answers
4k views

SQL Select Statement For Calculating A Running Average Column

I am trying to have a running average column in the SELECT statement based on a column from the n previous rows in the same SELECT statement. The average I need is based on the n previous rows in the ...
6
votes
5answers
5k views

T-SQL GROUP BY: Best way to include other grouped columns

I'm a MySQL user who is trying to port some things over to MS SQL Server. I'm joining a couple of tables, and aggregating some of the columns via GROUP BY. A simple example would be employees and ...
5
votes
2answers
106 views

Elegant way to solve ddply task with aggregate (hoping for better performance)

I would like to aggregate a data.frame by an identifier variable called ensg. The data frame looks like this: chromosome probeset ensg symbol XXA_00 XXA_36 XXB_00 1 ...
5
votes
3answers
334 views

Would C# benefit from aggregate structs/classes?

Foreword tl;wr: This is a discussion. I am aware that this "question" is more of a discussion, hence why I will mark it as community wiki. However, according to the How to Ask page, it could belong ...
5
votes
3answers
3k views

How does a site like kayak.com aggregate content?

Greetings, I've been toying with an idea for a new project and was wondering if anyone has any idea on how a service like Kayak.com is able to aggregate data from so many sources so quickly and ...
5
votes
5answers
759 views

Is there a better way to aggregate a dictionary using LINQ?

I am trying to build a dictionary from an enumerable, but I need an aggregator for all potentially duplicate keys. Using ToDictionary() directly was occasionally causing duplicate keys. In this ...
5
votes
3answers
1k views

Design Aggregate Root Properly

I have some problems designing the aggregate root. Here is how I see it in my mind :) Store (the aggregate root) -> Sales - A store create a sale every day -> Zones - A store is divided into ...
5
votes
4answers
200 views

Domain Objects containing lots of Data

Our Domain has a need to deal with large amounts (possibly more than 1000 records worth) of objects as domain concepts. This is largely historical data that Domain business logic needs do use. ...
5
votes
3answers
3k views

Can Rails' Active Record handle SQL aggregate queries?

Just started learning active record and am wondering how to best retrieve data from multiple tables where an SQL aggregate query is involved. In the following example (from a medical app) I'm looking ...
5
votes
2answers
2k views

linq aggregate

class Category { public string Name { get; set; } public int Count { get; set;} } Name Count AA 2 BB 3 AA 4 I have an IEnumerable<Category> and would like to get a ...
5
votes
7answers
13k views

SQL group by day, show orders for each day

I have an SQL 2005 table, let's call it Orders, in the format: OrderID, OrderDate, OrderAmount 1, 25/11/2008, 10 2, 25/11/2008, 2 3, 30/1002008, 5 Then I need to produce a report ...
4
votes
1answer
105 views

What does a “standard formula interface to a data.frame” mean in R?

The documentation for aggregate states: ‘aggregate.formula’ is a standard formula interface to ‘aggregate.data.frame’. I am new to R, and I don't understand what this means. Please explain! ...
4
votes
4answers
131 views

How can I improve this SQL query?

I ran into an interesting SQL problem today and while I came up with a solution that works I doubt it's the best or most efficient answer. I defer to the experts here - help me learn something and ...
4
votes
1answer
446 views

NHibernate QueryOver select entity and aggregates

What I want to do is display a simple grid of data which contains the entity data, and the aggregate data of its children. For example lets use a Order and line items. I want to display the order ...
4
votes
2answers
188 views

Tuple aggregate construction which infers types and elides move/copy constructor calls?

Consider the following mypair class (I'm not sure if this is the best way to do things, but it seems to work): #include <iostream> struct A { A() {} A(const A&) { std::cout << ...
4
votes
1answer
54 views

Reducing the granularity of a data set

I have an in-memory cache which stores a set of information by a certain level of aggregation - in the Students example below let's say I store it by Year, Subject, Teacher: # Students Year ...
4
votes
3answers
130 views

Should Post and Comment be in the Post Aggregate or should they be aggregates of their own?

Consider the typical blog with objects Post and Comment. For a DDD demo example i have been building i have (till now) found that both the entities Post and Comment have been appropriate for the same ...
4
votes
2answers
500 views

Aggregate Root references other aggregate roots

I'm currently working a lot with DDD, and I'm facing a problem when loading/operating on Aggregate roots from other aggregate roots. Foreach Aggregate root in my model, I also have a repository. Now ...
4
votes
9answers
450 views

Linq to Objects - return pairs of numbers from list of numbers

var nums = new[]{ 1, 2, 3, 4, 5, 6, 7}; var pairs = /* some linq magic here*/ ; => pairs = { {1, 2}, {3, 4}, {5, 6}, {7, 0} } The elements of pairs should be either two-element lists, or ...
4
votes
6answers
342 views

Aggregate or summarize to get ratios

The following is a toy problem that demonstrates my question. I have a data frame that contains a bunch of employees; for each employee, it has a name, salary, gender and state. aggregate(salary ...

1 2 3 4 5 12