Unprotected Queries
There are over half a million database servers out on the Internet without protection. How can this happen?
2012-11-06 (first published: 2007-12-04)
490 reads
There are over half a million database servers out on the Internet without protection. How can this happen?
2012-11-06 (first published: 2007-12-04)
490 reads
Will the 40 hour work week change anytime soon? A survey seems to think so, and Steve Jones (somewhat) agrees.
2012-11-05 (first published: 2007-12-03)
327 reads
An open letter to Microsoft from the CEO of Mandriva Linux might not have been the best idea.
2012-11-02 (first published: 2007-11-30)
379 reads
2012-11-01
118 reads
Building a team when you are developing software of any size is important and Steve Jones shares one of the most important things you need.
2012-10-31 (first published: 2007-12-10)
186 reads
A few thoughts from Steve Jones on how you can help increase your own job security in IT.
2012-10-30 (first published: 2007-11-26)
377 reads
2012-10-29 (first published: 2007-11-20)
227 reads
Today Steve Jones talks about those great DBAs, the Exceptional ones that do more than just respond to issues or set up monitoring on their systems.
2012-10-25
174 reads
There's a hole in the SQL Server platform. No log reader comes with the product and Steve Jones thinks Microsoft should build one and include it.
2012-10-24
431 reads
Today Steve Jones talks about the differences between development and production and how it can be good to spend a little doing the other type of work.
2012-10-23
127 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