Rating PASS Abstracts
I was on a committee to help rate abstracts for the PASS Summit this year. It was an interesting and...
2010-07-01
838 reads
I was on a committee to help rate abstracts for the PASS Summit this year. It was an interesting and...
2010-07-01
838 reads
Update: Apparently I can't write, or get a point across from the
comments and a few emails, so I have...
2010-06-30
2,518 reads
I saw someone post recently that they wanted to run this code on their principal server in database mirroring to...
2010-06-30
2,132 reads
With the announcement of Brent Ozar (Blog | Twitter ) leaving Quest for SQL Skills, Exceptional DBA finalist Jorge Segarra (blog | twitter)...
2010-06-29
1,609 reads
We had an unexpected switch last weekend. My boss decided that we were ready to move from the Stack Exchange...
2010-06-29
1,742 reads
Steve Jones takes a day to thank everyone that donates their time to help others in the community.
2010-06-28
87 reads
I’m not a big networking person. I know that it’s good for my career, but I’ve been lucky enough to...
2010-06-28
754 reads
I’ve heard this before, it came up in the Tufte seminar I took, and it also was something that grated...
2010-06-25
1,105 reads
I’ve been a judge in this contest for the last 3 years, and each years we’ve had really good finalists,...
2010-06-25
822 reads
This week Steve Jones has a poll about the difficulties in getting the DBA position into companies. What's your current opinion of this profession?
2010-06-25
318 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