Viewing 15 posts - 1,501 through 1,515 (of 4,081 total)
Grant Fritchey (7/15/2010)
I think we've shot past denial and are moving in the direction of outright insanity on this. I'm still reading it because it's like watching a car crash.
But...
July 15, 2010 at 1:03 pm
Okay... someone alleviate my ignorance and tell me what "dfft" means.
July 14, 2010 at 12:17 pm
You were too quick for me, Seth.
Paul, whenever you do something in SQL, it is almost always preferable to NOT use a loop. That is procedural thinking that...
July 14, 2010 at 10:11 am
declare @item_sk int
set @item_sk = 4220
select @item_sk as item_sk, CASE when exists (select 1 from #group_items where item_sk = @item_sk and description = 'filed')
then 'Yes'
else 'No'
end as filed
You could modify...
July 14, 2010 at 9:54 am
The Dixie Flatline (7/7/2010)
From Books Online (the section on RAISERROR):
When RAISERROR is run with a severity of 11 or higher in a TRY block, it transfers control to the associated...
July 14, 2010 at 9:00 am
I don't think anybody misunderstands anything after all this time. Yes, the flow of the procedure is interrupted when evoked from within a try/catch. ...
July 13, 2010 at 9:54 am
rajmaiet,
Please submit your question as a new question, rather than tacking it onto someone else's question.
July 13, 2010 at 9:29 am
Congrats, Jeff. I will bring a big bag of peanuts to your session so your SSC fans can throw them at you if you mention Hamster Poo.
I'm off...
July 9, 2010 at 5:16 pm
It has UNIONs and inside out subqueries and finally a pivot table construct (not that any of those are bad, they just don't lend themselves to readablity).
Agreed,...
July 9, 2010 at 4:23 pm
Double Forward Fourier Transforms ??
July 9, 2010 at 3:52 pm
Jeff, you have hp on the brain.
You need to clean the cages out more often ,,, or naybe less often. 😛
July 9, 2010 at 3:32 pm
Good that you included gals. Very bad to give offense.
At least one practices with edged weapons... and fiber-optic laser disassemblers. She showed remarkable...
July 9, 2010 at 3:21 pm
I can't help. I ran your code and got the same puzzling results. Then I looked through books online and it reads as if the results...
July 9, 2010 at 3:15 pm
If you look closely at the execution plan for your first example, you should see that it only pulls the column(s) necessary for filtering or output from the joined table....
July 9, 2010 at 3:10 pm
Viewing 15 posts - 1,501 through 1,515 (of 4,081 total)