Viewing 15 posts - 1,231 through 1,245 (of 3,957 total)
If your trailing digits are always 3 or 4 in length, you could do something like this which avoids to overhead of either PARSENAME or REVERSE.
with Something as
(
select '000006-00005-254-008' as...
October 28, 2013 at 7:13 pm
bpowers (10/25/2013)
October 28, 2013 at 7:05 pm
asdf-146317 (10/28/2013)
October 28, 2013 at 6:29 pm
tim_edwards (10/28/2013)
Great article!Anyone else getting a "The resource could not be found" error when trying to download the Test Harness files?
Just in case you or anyone are having this issue,...
October 28, 2013 at 6:25 pm
Mark-101232 (10/28/2013)
Interesting article!Paul White posted some useful information about MERGE performance
Mark - Thanks for the highly relevant thread. Paul's analysis is clearly informative, as his analyses usually are.
I'm surprised...
October 28, 2013 at 6:22 pm
andrew.fenna (10/28/2013)
-- MERGE
MERGE #Target t
USING (@ID, @Value
) s (ID, Value)
ON s.ID = t.ID
...
October 28, 2013 at 6:19 pm
twin.devil (10/28/2013)
dwain.c (10/27/2013)
guy.stephens (10/27/2013)
October 28, 2013 at 6:17 pm
Phil Parkin (10/27/2013)
Thanks for the concise article Dwain - an interesting read as usual.
Hey Phil! Good to hear from you and thanks for the compliment.
Haven't seen you out and...
October 28, 2013 at 6:16 pm
rmechaber (10/28/2013)
No, I don't see the behavior being at odds with BOL either, but I do see it being at odds with computational integrity and statistics. And BOL...
October 28, 2013 at 6:14 pm
Pretty much any rCTE can be written as a set-based WHILE loop and often the performance of the loop will beat the rCTE.
While not a node traversal, this article has...
October 28, 2013 at 6:01 am
guy.stephens (10/27/2013)
October 27, 2013 at 11:11 pm
kbenton 6603 (10/27/2013)
October 27, 2013 at 9:27 pm
Not exactly a newbie question I'd venture to say. Some of those graphs examples are pretty deep stuff.
Beware of the recursive CTEs that he's using. They may produce...
October 27, 2013 at 7:44 pm
Viewing 15 posts - 1,231 through 1,245 (of 3,957 total)