Viewing 15 posts - 16 through 30 (of 36 total)
Triggers, in my experience, are best used sparingly and with careful forethought. Triggers that reference other database objects add complexity to query plans.
I worked on a system (in DB2) that...
November 12, 2010 at 9:38 am
I think this difference in behavior may have something to do with the fact that the construction we're all so used to in SQL Server
SELECT (some thing or expression)
is...
November 12, 2010 at 8:41 am
This is one of the best articles I have read in a long time. Excellent work.
March 4, 2010 at 7:00 am
I called mine the 'Integers' table. Because it's a table of INTs. Also, I used to write code for the lumber industry, where 'Tally' has a specific meaning.
December 14, 2009 at 7:56 am
I think I'm with Tony Scott on this one: why not prevent the issue at insert time, rather than go through all the pain of removing duplicates after the fact?
November 30, 2009 at 7:03 am
rbramhall (10/28/2009)
October 28, 2009 at 7:06 am
Great article. It discusses index stats in just enough detail to make things clear without bogging down.
October 28, 2009 at 6:55 am
It would be interesting to do some testing to see at what point the cost of the recomplications outweighs the overhead of #temp tables.
I'm taking Kalen Delaney's course in two...
June 11, 2009 at 10:45 am
Damn good article. I knew that table variables didn't have stats computed for them, but I hadn't fully considered the implications of that.
One point which your article doesn't make explicitly...
June 10, 2009 at 8:34 am
michael ham (3/8/2009)
March 9, 2009 at 7:40 am
Well, I feel a bit better. I spent a lot of time digging and couldn't find anything. I'll post the same question on usenet and see if any of the...
March 9, 2009 at 7:09 am
GilaMonster (3/8/2009)
Dean Cochrane (3/8/2009)
The correct solution to your problem is not to beat SQL Server into tortured subservience, it is to rewrite the bad code into good code.
😎 May I...
March 8, 2009 at 1:33 pm
musheik (3/8/2009)
March 8, 2009 at 12:41 pm
Of course. I should have thought of that. Thanks.
January 22, 2009 at 6:06 am
Phil Factor (12/12/2008)
December 12, 2008 at 7:44 am
Viewing 15 posts - 16 through 30 (of 36 total)