2019-12-25
94 reads
2019-12-25
94 reads
Steve notes that math operations are places where many developers have made mistakes in the past. A little test code might help here.
2019-12-23
327 reads
This week Grant talks about the need for change and growth to adapt to the changing world.
2019-12-21
233 reads
Today Steve Jones looks at the relative cost of hardware and how we sometimes cause ourselves issues by not spending enough.
2019-12-20 (first published: 2016-11-03)
281 reads
2019-12-18
270 reads
Today Steve looks at a research project from Microsoft that provides some better protection from firmware security issues.
2019-12-17
174 reads
At work in IT, we can wander around looking important with no apparent useful skills whatsoever. When working outside the bubble of the industry, things are different.
2019-12-14
296 reads
Learning a new skill is always helpful, especially for backup and restore. Steve Jones talks about an idea from the SQLCAT team.
2019-12-13 (first published: 2016-11-15)
358 reads
2019-12-12 (first published: 2016-11-14)
481 reads
Today Steve notes that DevOps isn't going to eliminate Ops, even if developers support their own applications.
2019-12-10
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