2020-08-13 (first published: 2016-04-18)
521 reads
2020-08-13 (first published: 2016-04-18)
521 reads
2020-08-12
274 reads
Unsecured databases are a problem, but someone is fighting this issue by wiping them out.
2020-08-11
203 reads
A ransomware attack takes down Garmin, not just the company, but also Steve's data. He has a few thoughts about what this might mean for our data.
2020-08-10
169 reads
For those of you who haven’t heard of it, MVP stands for Most Valuable Professional. Microsoft gives this award to people in the community – not employees – who help teach the community at large about their products. The award can be given in one or more of the categories such as Data Platform, AI, […]
2020-08-08
286 reads
Steve talks about working from home and finding ways to manage your work life balance.
2020-08-07
150 reads
2020-08-06
233 reads
Having a coach guide you in sports is valuable. The same could be said for your career.
2020-08-05
91 reads
2020-08-04
113 reads
2020-08-03
140 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 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