0
votes
1answer
31 views
Is it possible to order_by with a callable?
DUPLICATE: http://stackoverflow.com/questions/981375/using-a-django-custom-model-method-property-in-orderby
I have two models; one that stores posts and another that stores votes …
3
votes
4answers
64 views
Performance of COUNT SQL function
Hi All,
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 bea …
1
vote
3answers
47 views
collapsing NULL values in Oracle query
I often write queries wherein I pivot data and end up with NULL values that I want to collapse. E.g. data like the following:
id time_in time_out
1 2009-11-01
…
2
votes
4answers
33 views
Oracle: Way to aggregate concatenate an ungrouped column in grouped results
Hi,
I have a query with several aggregate functions and then a few grouped columns. I want to take one of the grouped columns out of the group and perform some sort of aggregate …
0
votes
1answer
34 views
object_list of multiple models in django
I have multiple abstract models similar to this
Class Article(models.Model):
title = models.CharField()
body = models.TextField()
created_date = models.DateTimeField() …
1
vote
1answer
41 views
django: time range based aggregate query
Hi there!
I have the following models, Art and ArtScore:
class Art(models.Model):
title = models.CharField()
class ArtScore(models.Model):
art = models.ForeignKey(Art)
…
1
vote
1answer
32 views
Materialized View with column aggregate
This is another stab into a problem I posted here. Please don't close as duplicate,
because it goes in another direction.
I'd like to automatically update a database column with a …
0
votes
1answer
29 views
How does an aggregate root delete one of its children?
If my understanding of Aggregate Roots is correct, the root should be responsible also for deleting one of its "children". That would seemingly translate into something like this:
…
0
votes
2answers
128 views
How can I sum the last 15 rows in my database table?
I have a Sales table, with the following columns:
employeeID
amount
date
Now I want to SUM up the last 15 rows, so I am currently doing:
SELECT TOP 15 SUM(amount) FROM Sales O …
0
votes
1answer
30 views
Group Aggregated Data better in SQL or in CODE (in terms of performance)
I would like to ask for opinion on making aggregate data by concatenating strings. If I have a column aggregate but I want to concatenate then in an aggregate column, which is fast …
0
votes
1answer
72 views
linq aggregation
Say I have classes like:
public class ServiceCall
{
public int ServiceCallID {get; set;}
public DateTime ReportedTimestamp {get; set;}
public boo …
2
votes
2answers
44 views
Creating an aggregate blog?
I'd like to create a blog similar in style to http://tastespotting.com where the site aggregates content from other blogs and displays them in a thumbnail post which on clicking go …
0
votes
3answers
39 views
use linq aggregate function to build xml string?
I've used this in the past to build comma seperated lists:
var list = new List<int>{1,2,3};
var retVal = list.Select(i=>i.ToString()).Aggregate((a,b) => a+", "+b);
W …
3
votes
2answers
53 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 sto …
2
votes
1answer
94 views
Domain Driven Design - Repositories and aggregate roots
I have a domain model that contains a forum.
I have forum, thread and post entities.
The forum is a standalone entity. Ie it does not contain thread as part of an aggregate. Thi …
