0
votes
1answer
16 views
LINQ: query to sum on grouped field
I've a list of tasks. Ie I've struct like
struct Task
{
public DateTime Completed { get; set; }
public string TaskKind { get; set; }
public float Effort { get; set; }
…
1
vote
3answers
82 views
how to structure an index for group by in Sql Server.
Hi,
The following simple query takes a very long time (several minutes) to execute.
I have an index: create index IX on [fctWMAUA] (SourceSystemKey, AsAtDateKey)
SELECT MAX([t0 …
1
vote
2answers
45 views
achieving a complex sort via Linq to Objects
I've been asked to apply conditional sorting to a data set and I'm trying to figure out how to achieve this via LINQ. In this particular domain, purchase orders can be marked as …
7
votes
17answers
2k views
Is there any difference between Group By and Distinct
I learned something simple about SQL the other day:
SELECT c FROM myTbl GROUP BY C
Has the same result as:
SELECT DISTINCT C FROM myTble
What I am curious of, is there anythi …
0
votes
2answers
48 views
jQuery - How to sequentially run an animation ONLY ONCE after animation on a group (e.g. siblings)
Here's my dilema. I have 2 animations that need to run sequentially.
The first animation runs on a group of elements acquired through jQuery's siblings() function.
The second ani …
1
vote
1answer
33 views
How can I insert page breaks between groups in Crystal Reports with two-sided printing?
In group expert options I have set Keep Group Together, which makes sure a new page is set.
With two-sided printing enabled, how can I make sure that a new group always forms on a …
0
votes
1answer
73 views
PHP regex extract/replace values from xml-like tags via named (sub)groups
Trying to create a simple text-translator in PHP.
It shoult match something like:
Bla bla {translator id="TEST" language="de"/}
The language can be optional
Blabla <transla …
1
vote
2answers
117 views
ASP.NET like ValidationGroup using JQuery validate plugin?
Hello,
We're trying to get the JQuery validate plugin working on our site but we've stumbled across a problem here.
On our site we have a login form available for the user on e …
0
votes
0answers
18 views
install msi using group policy [closed]
Hi,
1) If we install/push msi using group policy can/will we see installation steps/Wizard/options which we can see if start installtaion using setup.exe by double clicking it.
2 …
1
vote
2answers
43 views
Advance grouping of List Items - Jquery
I have a list like
<ul>
<li> hgh55jjj </li>
<li> abc99xyz </li>
<li> hgf88hjk </li>
<li> ........ </li>
<li> ........ …
0
votes
0answers
25 views
How to solve this missing update() on custom image to org.eclipse.swt.widgets.Group?
I have an interesting aspect to submit to your attention. I am pretty sure the solution to this will prove to be very easy, and yet... i am unable to find it. Here it is what i did …
0
votes
3answers
52 views
How to count group by rows in rails?
When i use User.count(:all, :group => "name"), i got multi rows, but it's not i want, what i want is the count of the rows, how can I do it?
0
votes
1answer
34 views
How to write subquery in Criteria
Hi there,
I have a SQL like this:
Select tbl.id, tbl.name
From
(select table1.id, table1.name
from table1
inner join table2 on table1.id = table2.id
order by table2.priority …
1
vote
3answers
317 views
Crystal Reports group name error
I am grouping on a date field. The tree explorer for the report when data is displayed shows the date as 3 days before the date that is in the records. The detail in the report lis …
0
votes
0answers
39 views
avoid gmail threading [closed]
I've seen some questions regarding how to make Gmail thread emails (group emails with same subject, or even different subject with the in-reply-to).
However what I want to do is to …
