Viewing 15 posts - 2,566 through 2,580 (of 8,416 total)
Deepthy (9/23/2010)
The wildcard solution i tried before is not working in the way I want.
Can you explain why? I'm struggling to see a reason to prefer CHARINDEX. It...
September 23, 2010 at 7:07 am
There is an interesting alternative that avoids the join:
SELECT Grouped.Item,
Grouped.Value
FROM (
...
September 23, 2010 at 6:58 am
Haven't I answered this same question before from you?
http://www.sqlservercentral.com/Forums/Topic987990-392-1.aspx
September 23, 2010 at 6:43 am
coenie-353912 (9/23/2010)
What is the possible reasons that Global Temp Tables can cause performance issues.
Are you using global temporary tables? Do these seem to be causing performance problems?
September 23, 2010 at 6:39 am
Dave Ballantyne (9/23/2010)
But his results did get better after removing 90% of the data.
Thanks for reminding me of the other thing he said that made me want to chew my...
September 23, 2010 at 6:30 am
Dave Ballantyne (9/23/2010)
September 23, 2010 at 3:57 am
Dave Ballantyne (9/23/2010)
September 23, 2010 at 3:05 am
GilaMonster (9/23/2010)
Paul White NZ (9/22/2010)
September 23, 2010 at 2:14 am
GilaMonster (9/22/2010)
<several people>: Change the index thusly
OP: That won't help.
<couple people>: Did you try it?
OP: That helped a...
September 22, 2010 at 11:56 pm
Alvin Ramard (9/22/2010)
September 22, 2010 at 3:52 pm
Steve Jones - Editor (9/22/2010)
CirquedeSQLeil (9/22/2010)
I don't see any way Gail beats the thread to 20k unless the thread keels over.
well of course not, not at the rate you people...
September 22, 2010 at 11:49 am
Nothing to add - just keeping the Thread's total ticking over.
September 22, 2010 at 11:14 am
Brad Schulz (9/22/2010)
Yes, that's fair. I concede that the CLR approach seems to be the best one-stop-shopping approach... it does perform... the 100MB memory grant thing bugs me though.
Me...
September 22, 2010 at 11:09 am
Brad Schulz (9/22/2010)
EXACTLY... There doesn't seem to be a one-stop-shopping function that does it all.
For my money, a production-quality SQLCLR solution is closest, since it produces the best/very good performance...
September 22, 2010 at 10:40 am
Brad Schulz (9/22/2010)
You're right about the NULL part. That's easily taken care of with an ISNULL call within the function.
Certainly.
As for the "problem" characters like ampersand, less-than, greater-than, etc,...
September 22, 2010 at 10:36 am
Viewing 15 posts - 2,566 through 2,580 (of 8,416 total)