SQL Is Always Going to be Popular
Steve thinks that learning more about the SQL language is always a good career investment.
2020-03-18
359 reads
Steve thinks that learning more about the SQL language is always a good career investment.
2020-03-18
359 reads
Steve thinks version control is a fundamental and critical part of working in technology.
2020-03-17
213 reads
Working from home can be hard and Steve has a few ideas that might help you transition during these challenging times.
2020-03-16
261 reads
A new security flaw in Intel SGX is found by researchers. This may or may not be a problem, but you should be aware.
2020-03-14
137 reads
Microsoft is retiring some certifications and offering others. Steve has a few thoughts on this.
2020-03-13
271 reads
Steve Jones highlights the importance he sees for data professionals in the containerization of software.
2020-03-11
299 reads
2020-03-10
350 reads
With progress thwarted by a committee of panjandrums, will T-SQL forever remain in the doldrums? So wonders Phil Factor.
2020-03-09 (first published: 2017-07-10)
493 reads
Today Steve asks what reasons a developer has for using stored procedures.
2020-03-06
555 reads
A security breach at Microsoft is disconcerting, especially when they don't share details.
2020-03-05
294 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