Viewing 15 posts - 166 through 180 (of 283 total)
Glad it worked for you.
I looked in Itzik Ben-Gan's book on Window Functions to get more information about the difference between Row_Number, Rank and Dense_Rank
"When the ordering is unique, both...
December 2, 2014 at 8:05 am
sdh96 (12/2/2014)
How can I get top 3 sales per salesmanid:
;with cte as
(
select SALESMAN_ID, ORDER_NO, ORDER_TOTAL,
Row_Number() over (partition...
December 2, 2014 at 7:48 am
smitty-1088185 (11/22/2014)
below that failed and were never successful for the same day? Some tables may succeed or fail
more than once on the same...
November 22, 2014 at 8:00 am
JeeTee (11/11/2014)
November 12, 2014 at 10:49 am
JeeTee (11/11/2014)
November 12, 2014 at 10:37 am
Jack Corbett (11/11/2014)
November 11, 2014 at 10:34 am
Anyone have an idea on this? :unsure:
November 11, 2014 at 9:43 am
Try this:
CASE WHEN T3.LineTotal IS NULL THEN T0.Rate * SUM(T0.LineTotal) - (T0.DiscPrcnt / 100) ELSE ((T0.Rate * SUM(T0.LineTotal)) - (T0.DiscPrcnt / 100)) + T3.LineTotal) END AS 'Total NATIVE'
It looks like...
November 10, 2014 at 10:40 pm
phoeneous 65427 (10/21/2014)
This works when I apply it to the query, no need to filter in ssrs.AND (OrderDate BETWEEN (@StartDate ) AND (@EndDate + '23:59:59'))
I have never been a...
October 21, 2014 at 2:44 pm
Luis Cazares (10/14/2014)
October 14, 2014 at 5:45 pm
Anybody have a thought on this?:-)
October 14, 2014 at 4:34 pm
sistemas_casinomnes (9/30/2014)
September 30, 2014 at 8:21 am
Welsh Corgi (9/30/2014)
I need to return the effective date...
September 30, 2014 at 7:28 am
You could do this with a stored procedure, but if it were me, I would do the grunt work in the front end and just pass the completed query to...
September 9, 2014 at 12:08 pm
Long standing bug in SSMS. Many posts about it on other forums. They say that by deleting SQLStudio.bin it will solve the issue. It does not.
September 5, 2014 at 7:52 am
Viewing 15 posts - 166 through 180 (of 283 total)