Viewing 15 posts - 271 through 285 (of 3,957 total)
I guess the real point of my post was not to offer competition to DelimitedSplit8K (or any of its variants).
Rather to see if anybody has ever seen this "short-circuiting of...
March 10, 2015 at 1:07 am
Srl832 (3/10/2015)
March 10, 2015 at 1:04 am
Erikur,
My results with your harness confirm what you got after I changed from DelimitedSplitL8K to DelimitedSplit8K.
T_TEXT ...
March 10, 2015 at 1:01 am
I'm not sure I really understand your requirement, nor do I see exactly how your input relates to your desired output. Nice job of providing DDL and sample data...
March 10, 2015 at 12:54 am
Srl832 (3/9/2015)
declare @fromDate datetime
declare @toDate datetime
set @fromDate = '2015-3-1 0:0:0'
set @toDate = '2015-3-9 21:43:00'
SELECT SUM(ALERTS) as TOTAL_ALERT
FROM
(SELECT COUNT(MessageId) ALERTS
FROM DeliveryMessage with...
March 10, 2015 at 12:37 am
Whoohoo! Finally a chance to contribute to this thread. Possibly. Someone please check me on this.
Below is a rather simplistic test harness that assumes we have a...
March 10, 2015 at 12:15 am
Looks like a data smear to me:
Filling In Missing Values Using the T-SQL Window Frame[/url]
As Sean has advised, there's no reason to store that information when there's various ways to...
March 9, 2015 at 6:37 pm
Cadavre (3/9/2015)
Using OFFSET: -
SELECT *
FROM [#testEnvironment]
ORDER BY [ID]
OFFSET 100 ROWS
FETCH NEXT 100 ROWS ONLY;
+1. My first thought when I read the question.
March 9, 2015 at 6:28 pm
Snargables (3/9/2015)
March 9, 2015 at 6:25 pm
ZZartin (3/9/2015)
dwain.c (3/8/2015)
To me, properly formatting the...
March 9, 2015 at 6:22 pm
CELKO (3/9/2015)
I'm going to go out on a limb here and suggest that, since calculating a product price probably requires no data updates, that should be done using an in-line...
March 9, 2015 at 5:57 pm
Michael L John (3/9/2015)
March 9, 2015 at 5:46 pm
Joseph Miano (3/5/2015)
March 9, 2015 at 3:43 am
t.mounika01 (3/6/2015)
March 9, 2015 at 3:39 am
I'm going to go out on a limb here and suggest that, since calculating a product price probably requires no data updates, that should be done using an in-line Table...
March 8, 2015 at 7:16 pm
Viewing 15 posts - 271 through 285 (of 3,957 total)