PASS Update #10
It's been a slower pace since the last update. Grant and I are working on the publication process for content...
2009-05-12
754 reads
It's been a slower pace since the last update. Grant and I are working on the publication process for content...
2009-05-12
754 reads
I've been tech editing a book about SQL Server encryption and this series of blog posts looks at some interesting...
2009-05-12
8,516 reads
Hmm, SQL Server 2008 is completed everyday till possible new versioin. So know we have available the SQL Server 2008...
2009-05-12
618 reads
This morning, with a sore back, I’m struggling a little to sit still, but I’ve managed to get things done....
2009-05-11
559 reads
While I was testing some things the other day my desktop was running slow. I mean so slow that typing...
2009-05-11
806 reads
Last year I wrote about signing up for Clear, a registered traveler program. I've flown enough to make it useful...
2009-05-10
590 reads
I spent a fascinating hour at the Teched Shop this afternoon. I was trying to get a feel for where...
2009-05-10
1,284 reads
One of the charming people who helped me register at Teched told me where we, who had registered, could get...
2009-05-10
1,717 reads
I'm on the Prius mailing list since I bought a Prius and Toyota hopes that I'm
Happy with my Prius Willing...
2009-05-08
592 reads
At the end of August 2009 will organize the Software Freedom Kosova 2009, the big event for the Open Source...
2009-05-08
460 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 Optional Parameter Plan Optimization in...
Comments posted to this topic are about the item AI Experience Gap that we...
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