Popcorn Networking
A bit of a silly title, but an interesting story. A few weeks back I posted a note about attending...
2010-07-21
607 reads
A bit of a silly title, but an interesting story. A few weeks back I posted a note about attending...
2010-07-21
607 reads
One thing I learned years ago in C programming was the elegance of using operators and simplifying expressions. This sometimes...
2010-07-21
738 reads
Well this was going to be replication post, but I have read it, re-written it, read it, re-written and it...
2010-07-20
670 reads
For those that may of missed it, voting for SQLBits sessions is now open. Make your voice heard and get...
2010-07-20
401 reads
SQL Saturday #40 is quickly approaching and many are gearing up for the trip down there to hear some awesome...
2010-07-20
483 reads
Hi! I’m SA! I’ll be your mentor during your stay at Innitrode! Actually, I’m everyone’s mentor here…anytime someone needs some...
2010-07-20
577 reads
Don’t forget the July PASSMN meeting is today. We have Itzik Ben-Gan (blog) coming in to talk about some query...
2010-07-20
547 reads
Last Tuesday, July 13th, we had our monthly OPASS meeting. The meeting was sponsored by RedGate who were kind enough...
2010-07-20
453 reads
I saw this post (please do read it) about introducing speakers and it reminded me that I wanted to write...
2010-07-20
554 reads
The application form mentions that the quite a bit of what you include will be made public. While I won’t...
2010-07-20
714 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