Way Behind
One of the things I have to do every month is process payments for the authors. It’s my job to...
2010-07-08
328 reads
One of the things I have to do every month is process payments for the authors. It’s my job to...
2010-07-08
328 reads
I was having a long call with Andy Warren (blog | Twitter), fellow founder of SQLServerCentral and SQL Saturday. We were...
2010-07-07
633 reads
I have a monthly reminder, which is currently making me feel guilty. It’s there to tell me to review my...
2010-07-06
382 reads
2010-07-05
198 reads
I wrote recently about my efforts to network a bit more at events. Part 1 was to spend more time...
2010-07-05
324 reads
This Friday Steve Jones asks if we are setting the bar high enough when interviewing people and would you want to test more?
2010-07-02
217 reads
I’m trying to better manage my workload. When I owned this site, I struggled to find time off, and typically...
2010-07-02
350 reads
A raw dump of stuff from Memorial Day 2010 until July 4, 2010
Since Community Server has trouble with this,...
2010-07-02
611 reads
Steve Jones talks about the loss of data, and how it can impact your life. And why you want to be sure that your restores are ready in the event of a disaster.
2010-07-01
156 reads
It usually slips my mind that there are award dates for the Microsoft MVP program outside my own. I’m on...
2010-07-01
570 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