No More Reviews
Steve Jones doesn't like annual performance reviews, and has some evidence that they might be worth getting rid of.
2010-05-11
209 reads
Steve Jones doesn't like annual performance reviews, and has some evidence that they might be worth getting rid of.
2010-05-11
209 reads
It’s time again for T-SQL Tuesday and this month the topic is LOB, or BLOB data. You can read more...
2010-05-11
1,915 reads
I think Twitter is a graffiti wall that emulates a series of hallway conversations near the world's largest food court.
2010-05-11
700 reads
Building an audit in SQL Server 2008 is very easy, much easier than in previous versions using SQL Trace. That...
2010-05-10
1,696 reads
The Exceptional DBA contest is underway and today Steve Jones comments on the contest. Get your entry in today.
2010-05-10
164 reads
This Friday we have a fun poll. What interesting descriptions do you use when trying to talk about code with your peers?
2010-05-07
137 reads
I heard this recently at my company. Our group, which is relatively removed from the main business of writing software,...
2010-05-06
751 reads
SQL Saturday #49 in Orlando just opened their call for speakers. I’m debating if I want to go out there....
2010-05-06
887 reads
Here's one that you might want to pass along to those managers that approve training. Steve Jones gives you the reasons why you ought to consider paying for training.
2010-05-06
258 reads
The other day I was looking over a couple of articles on paging, looking to see if I could learn...
2010-05-05
410 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