Viewing 15 posts - 1,036 through 1,050 (of 1,193 total)
Lowell (4/11/2012)
but the OP said he want's...
April 11, 2012 at 7:26 am
Glad you found the solution.
Although as an aside, enabling the SQL Browser service on the server should mean you don't need to create the aliases on your client machines.
April 11, 2012 at 6:38 am
Could Logon triggers be used?
Get them to write to an auditing table and then query that for the information you require?
As Lowell says though, after the initial login event you...
April 11, 2012 at 6:32 am
Just move the Where clause conditions into the join conditions, should do it.
;with calendar as
(select distinct calendarmonth, calendarYear, fiscalYear, fiscalMonth
from #calendar)
select
c.calendarMonth,
...
April 2, 2012 at 6:35 am
Ah, I missed him yesterday, went to see Christian Bolton instead.
David Morrison afterwards was good though.
March 31, 2012 at 4:05 am
Pradyothana Shastry (3/30/2012)
....whom you are searching for?
No one in particular, just any fellow SSC-ers who might be here!
All too busy I guess!
March 30, 2012 at 8:41 am
Went for 3, as I thought 4 was the total number you could have..
Oh well, learnt something 🙂
March 29, 2012 at 2:47 am
L' Eomot Inversé (3/26/2012)
Gazareth (3/26/2012)
March 27, 2012 at 5:08 am
L' Eomot Inversé (3/26/2012)
If there's a genetic chemistry biologist amongst the readers, maybe he can tell us what sspI stands for when it's a restriction enzyme - I can't, I...
March 26, 2012 at 4:11 pm
Ha, I was going to mention it, but this can be caused by one or more of your joins causing multiple rows to be returned for the values you're summing.
This...
March 26, 2012 at 9:57 am
Thanks.
You were on the right track with the changes you quoted above, but if you weren't removing SBTI.Amount & SBTI.Quantity from the GROUP BY clause, then you would have ended...
March 26, 2012 at 9:02 am
Viewing 15 posts - 1,036 through 1,050 (of 1,193 total)