Viewing 15 posts - 8,641 through 8,655 (of 8,760 total)
WayneS (4/3/2014)
This is an excellent modification to an already excellent function. Very well done!!! (And it was such a simple change at that.)
Jeff Moden (3/24/2014)
April 3, 2014 at 11:07 pm
Ran your example through on
noticed the grouping is incorrect, if it is on lccs/lcc/, you will get multiple lines of subtotal.
NaN could be null or empty string.
😎
April 3, 2014 at 10:44 pm
What about SSDT (Sql Server Data Tools) ?
😎
April 3, 2014 at 2:23 pm
Luis Cazares (4/3/2014)
Eirikur Eiriksson (4/3/2014)
Straight forward using Window functions
Isn't that over complicating something that could be achieved like this?
SELECT PONum
,POLineNum
,POSublineNum
...
April 3, 2014 at 2:04 pm
Straight forward using Window functions
DECLARE @POSTUFF TABLE
(
PONum INT ...
April 3, 2014 at 1:24 pm
Think of the columns in the group by as buckets, any aggregation is then applied to each bucket;
ColAColB
A1
B2
A2
B3
Group by ColA -> Aggregation on B
A (1,2)
B (2,3)
or in other words, it...
April 3, 2014 at 12:53 pm
wBob (4/3/2014)
See my reply here on a similar issue:http://www.sqlservercentral.com/Forums/Topic1557258-3411-2.aspx
Thanks!
😎
April 3, 2014 at 12:45 pm
If I remember correctly, you should re-configure the connections which before the protection level changes, where using the users credentials.
If you are using a SSIS configuration settings, walk through...
April 3, 2014 at 12:20 pm
Did you try to expand the Favorites (first on the list in the toolbox)?
😎
April 3, 2014 at 10:23 am
Looks like the protection level is set to "encrypt with user key", if moved to another scope, it will fail.
😎
April 3, 2014 at 10:00 am
Jeff Moden (4/3/2014)
What is it supposed to do?
It is a simple base36 to base10 number conversion.
01Z(base36) == 71 (base10)
😎
April 3, 2014 at 9:18 am
bugmesh (4/3/2014)
Has anyone used a Raspberry for...
April 3, 2014 at 7:46 am
One small change needed
<td><xsl:value-of select="sum(../../*/*/costs)" /></td>
😎
April 3, 2014 at 6:09 am
todor.belchev (4/3/2014)
I want to use a third party component in my SSIS package but I don't want to install it on the SQL server. This component is installed on a...
April 3, 2014 at 5:01 am
Quick translation (Google Translate style 😀 )
;WITH NUMS(level) AS
(SELECT N FROM (VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10)) AS NM(N))
select sum(C.position_value) from
(
select
power(36,B.position-1)...
April 3, 2014 at 4:53 am
Viewing 15 posts - 8,641 through 8,655 (of 8,760 total)