Viewing 15 posts - 61 through 75 (of 105 total)
davrose (10/14/2010)
Uhmm...not sure i made myself clear 🙂
Nope - you made yourself perfectly clear. The problem is that you have come to the conclusion the best solution uses a cursor,...
October 14, 2010 at 5:01 am
DECLARE @result AS VARCHAR(1000)
SELECT @result = COALESCE(@result + ', ') + dummy_column
FROM ...
October 14, 2010 at 4:27 am
Craig Farrell (10/13/2010)
[EDIT:] Aaaaaand I finally look at the top of the screen and realize I'm in the "Relational Theory" Forum... I'll shaddup now. [/EDIT]
Yeah - I learned a few...
October 14, 2010 at 3:29 am
BTW - I'll wait in the hope someone else can think of a better solution before I try writing the abortion of a query I have in mind....
October 13, 2010 at 9:17 am
I can only imagine a design & requirement like that can be due to a serious flaw, most likely lack of normalisation. This is a horrible problem to solve. Can...
October 13, 2010 at 9:16 am
Developer has all the features of Enterprise but cannot be used for production work. The difference between it and Enterprise is simply a matter of licensing. Looking up the difference...
October 13, 2010 at 8:37 am
Part of the reason I picked that one is it's the only I can think of off-hand I know anything about 😉
October 13, 2010 at 4:42 am
I suppose if it was me I would concentrate on the lazy writer. It does at least give some context to other more familiar SQL Server topics however without a...
October 13, 2010 at 4:10 am
Agreed. Assuming you are reasonably new to SQL Server this is an extremely odd topic - any sort of depth on this would be considered 300, probably 400 level. If...
October 13, 2010 at 3:18 am
Thanks Gail. I had a feeling there was some change like that but reckoned it was enough to get the guy started!
October 13, 2010 at 2:28 am
Um, that's a bit of an open question. You really could do with being more specific. As a start you look at the results of sp_who2 and investigate those process...
October 13, 2010 at 1:44 am
Paul White NZ (10/12/2010)
HowardW (10/12/2010)
I wonder if the confusion arises due to the ISNULL function being non-SARGable?
Quite possibly, but now I have to show you ISNULL being 'SARGed'...
IF OBJECT_ID('Tempdb..#sargTest') IS...
October 12, 2010 at 2:27 pm
The OP is gonna hate us when (s)he checks back in to get a nice, straightforward answer to their nice, straightforward question 😛
October 12, 2010 at 9:14 am
WayneS (10/12/2010)
October 12, 2010 at 8:56 am
Before seeing this thread, I'd never considered that anyone might think otherwise.
Brad McGhee did in 2007, and he's no thicky pants.
I wonder if in previous versions the engine used...
October 12, 2010 at 8:54 am
Viewing 15 posts - 61 through 75 (of 105 total)