Viewing 15 posts - 241 through 255 (of 378 total)
Just to throw in my 2c, I try to stay away from techniques that do not work reasonably efficient or completely break down in other ways when the query to...
May 7, 2010 at 3:10 am
I scanned the article quicly and it is well presented.
But I do have to dive into this particular one as I feel something odd is happening. The optimized statement is...
April 26, 2010 at 6:36 am
Excellent and with enough extra material to make it interesting for those already familiar with apply!
April 19, 2010 at 4:27 am
IT requires a certain intellect and personality types at the same time. Miss out on one of these and no way in hell are you going excel at it. Consequently...
April 15, 2010 at 2:51 am
Paul White NZ (4/9/2010)
peter-757102 (4/9/2010)
Strange, indeed column defaults and primary keys seem not be properly mapped transparently when applied to temp tables.
Constraints are always schema-scoped objects - see sys.objects.
This is...
April 10, 2010 at 6:39 am
Strange, indeed column defaults and primary keys seem not be properly mapped transparently when applied to temp tables.
This can be seen as either a design flaw or an implementation bug...
April 9, 2010 at 12:17 pm
Cliff Jones (4/9/2010)
peter-757102 (4/9/2010)
Cliff Jones (4/9/2010)
April 9, 2010 at 10:08 am
Cliff Jones (4/9/2010)
Also explicit naming of indexes and such on a temporary table will come around to bite you, glad you covered that. Very nice job on this article.
I...
April 9, 2010 at 9:48 am
akl (3/31/2010)
March 31, 2010 at 9:31 am
The first ORM I worked with was from the early 90s. It was a non public implementation, and I was unaware of any public ones at the time (the internet...
March 31, 2010 at 9:18 am
Man, am I happy to not work in theory, but in the material world (reallity, or at least my experience of it). We can dream up a lot of wonderful...
February 24, 2010 at 6:11 am
CraigIW (2/10/2010)
nicholasw (2/10/2010)
Instead of:IF EXISTS(SELECT 1 FROM ......WHERE....)
Would the following be quicker still?
IF EXISTS(SELECT TOP 1 1 FROM ......WHERE....)
No, as the "top 1" is only done after the "select 1...
February 10, 2010 at 4:04 am
Outstanding article...clear in meaning, no clutter or distractions, straight to the point.
It is also enlightening to see some of the beginner mistakes I made so many years ago when I...
February 10, 2010 at 3:57 am
Look at the recursive part as just as another expression that is transplanted everywhere it is being used. Just as would be the case if the CTE would be located...
February 8, 2010 at 9:56 am
Viewing 15 posts - 241 through 255 (of 378 total)