I Need a Logo
I've been doing the Voice of the DBA podcasts for over a year now, and I really enjoy them. I've...
2009-07-08
896 reads
I've been doing the Voice of the DBA podcasts for over a year now, and I really enjoy them. I've...
2009-07-08
896 reads
I finally made the call today to reserve my room in Baton Rouge for SQLSaturday #17 in Baton Rouge, LA....
2009-07-07
570 reads
There are a lot of exciting events happening in the next 2 months that you should be involved in so I...
2009-07-07
823 reads
I recently saw that Steve Jones had posted an update on his 2009 goals and realized that is was about...
2009-07-07
371 reads
It seems that I see more and more posts about people trying to shrink their transaction logs. It's getting to...
2009-07-07
1,853 reads
Since the beginning of SQLSaturday I’ve covered most of the news here on my blog, beginning this week I’ll be...
2009-07-06
466 reads
Okay I was tagged by Tim Mitchell on the Deserted Island scenario started by Tim Ford which goes like this:
So...
2009-07-06
494 reads
Originally written in French last year, now revised for you in my native language below:
You've probably all noticed a change...
2009-07-06
3,502 reads
One of the things I recommend to people that are looking to get into blogging is that they write 10...
2009-07-06
355 reads
I'll be presenting two sessions at the SQL Saturday event in Baton Rouge on August 1. I'll be presenting a...
2009-07-06
490 reads
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...
I’m excited to announce the release of a new open-source project that fully automates...
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