It's not you; it's us
The announcement that the MCM program was being discontinued brings us a few thoughts from Gail Shaw, one of the 0.08% to achieve the certification.
2013-09-04
652 reads
The announcement that the MCM program was being discontinued brings us a few thoughts from Gail Shaw, one of the 0.08% to achieve the certification.
2013-09-04
652 reads
The availability of cheap sensors brings with it lots of possibilities and concerns. However there is one certainty: more data.
2013-09-03
142 reads
2013-09-02
93 reads
Technical debt is frustrating but dealing with it requires patience. Louis Davidson explains why.
2013-09-02
159 reads
Do you work in a great IT shop? Steve Jones talks about some of the things that make one and wonders if you feel you work at a great company.
2013-08-30 (first published: 2009-01-07)
368 reads
DBAs are expensive, so isn't their time valuable? Are you aware of what you cost the company and use your time wisely? Steve Jones talks a bit about how to choose on what you should be working.
2013-08-29 (first published: 2009-02-18)
338 reads
The comment from one person has Steve Jones stunned today. He discusses the value of diversity and what we can do in the community.
2013-08-28
1,113 reads
Can a honeypot provide you with more security? It's an interesting idea from Steve Jones today that might help you detect, and respond, to security events.
2013-08-27
147 reads
The physical security of our systems might be a bigger problem in the future as more and more hackers are finding ways into secure areas.
2013-08-26
163 reads
Steve Ballmer is retiring in the next year and Microsoft needs to find a new CEO. Steve Jones has a few thoughts.
2013-08-26
118 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