Measuring Productivity
Today Steve wonders if the data professionals out there measure themselves on the job.
2026-09-02
105 reads
Today Steve wonders if the data professionals out there measure themselves on the job.
2026-09-02
105 reads
AI can go off the rails, as we see in a recent story about an LLM deleting a production database.
2026-05-20
145 reads
2026-04-17
131 reads
In software development, DevOps promises faster delivery, increased collaboration, and more reliable deployments. However, many teams unknowingly fall into anti-patterns.
2026-04-10
Many organizations haven't standardized the way they deploy code to databases, even when they do so for applications. Steve has a few thoughts on this today.
2026-03-13
118 reads
Steve used to shut down systems to upgrade them, but lately he makes changes while they're running.
2026-03-11
150 reads
Do you take the time to model and design your database? Steve thinks this is important, even while trying to make changes quicker to adapt to changing requirements.
2025-11-14
152 reads
DevOps includes a lot of practices, but no matter which technology that you use, the ideas are the same.
2025-10-27
158 reads
Steve found someone using an interesting approach to get developers to address some technical debt.
2025-09-08
219 reads
In Part 2, we shift focus from theory to practice. We will explore how organizations can harmoniously integrate both practi: the agility of DevOps and the resilience of SRE. During integration, it requires deliberate changes to culture, tooling, metrics, and collaboration patterns.
2025-08-29
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