Goals for 2010
Posting goals online is great as long as you meet your goals, can be something less than great if you...
2010-01-12
800 reads
Posting goals online is great as long as you meet your goals, can be something less than great if you...
2010-01-12
800 reads
So I’d planned to already have this done and published before the new year rolled around, but life got in...
2010-01-12
929 reads
This one caught my eye on the Data Mining Forum and it is not the first time that this one...
2010-01-11
1,153 reads
When I first reported to my duty assignment with the US Air Force, there were 3 sergeants in my shop....
2010-01-08
2,756 reads
I saw someone post a question recently about running out of identity values in an INT column. It happens, it’s...
2010-01-08
4,918 reads
Perhaps you heard of or actually tried Windows ReadyBoost in Windows Vista, and were (like me) disappointed with the results?...
2010-01-04
2,795 reads
Over the last few weeks I have focused most of my blog energy into writing a couple articles. So I...
2010-01-04
1,635 reads
Nearly anytime you see the command DBCC FREEPROCCACHE mentioned in a blog post, magazine article or book, you get some...
2009-12-31
15,057 reads
Midlands PASS is a small user group. We average about 15 people coming to meetings, which is good for Columbia,...
2009-12-30
1,349 reads
These queries (which work on both SQL Server 2005 and 2008) are very handy if you want to know who...
2009-12-29
3,772 reads
When I put together the invitation for T-SQL Tuesday #202, I wasn't sure what...
By Steve Jones
My life has some crazy travel stretches for sure. Between speaking, office visits, customer...
In Part 1, we saw how ‘Vamana’ represents vectors as nodes, connects them with...
Comments posted to this topic are about the item Server-Level Table sizes
Comments posted to this topic are about the item Optional Parameter Plan Optimization in...
There is a table tmp_tab:
CREATE TABLE tmp_tab ( id int, val int );
INSERT INTO tmp_tab VALUES (1, 1), (2, NULL), (3, 3), (4, 4), (5, 5);You want to order the rows ids by the following expression:
ISNULL(val, id) + 1Which of the following queries produces the expected ordering and why? (Select all correct) See possible answers