My Time is Valuable
Spending time on low value tasks isn't often worth the cost for highly paid employees.
2021-03-18
238 reads
Spending time on low value tasks isn't often worth the cost for highly paid employees.
2021-03-18
238 reads
Some people think every IT department is unique. While that might be literally true, Steve doesn't think that is actually the case.
2021-03-17
226 reads
The transformation of a way of working is hard, but it's important to realize this is more than just technology. This also includes people.
2021-03-16
101 reads
2021-03-15
161 reads
In 2008, I managed to achieve the goal of becoming a Microsoft Certified Trainer. Once I achieved the status, Microsoft shipped me a binder with dozens of DVDs containing lab VMs and class materials for all the current classes. At some point, instead of receiving DVDs, you were expected to download images which was quite […]
2021-03-13
177 reads
We all need to learn and tackle new technology in our career. When we do so, are we impostors or students?
2021-03-12
151 reads
2021-03-11
119 reads
Containers have changed how to develop and deploy software. They haven't caught on with databases as much, but Steve thinks this will change.
2021-03-10
156 reads
There are new platforms out there that promise a distributed SQL relational database. Steve talks about a few today.
2021-03-09
438 reads
As we use more Artificial Intelligence and Machine Learning tools in our applications, we need to understand how they work.
2021-03-08
108 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 Optional Parameter Plan Optimization in...
Comments posted to this topic are about the item AI Experience Gap that we...
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