Writing as an Art and a Job
Steve thinks communication is a core sill for technology people, especially in the age of AI.
2026-03-06
83 reads
Steve thinks communication is a core sill for technology people, especially in the age of AI.
2026-03-06
83 reads
This week I had the opportunity to join many of the U.S.-based Redgaters in Austin to talk about 2024 plans, hear from the product teams, and have some much-needed fellowship. One thing was particularly clear as I listened to various leaders and product managers – the customer drives everything we do. And I have to […]
2024-01-20
86 reads
Communication can be challenging when we don't work closely with others. Steve draws a comparison with a popular children's show in the US.
2023-08-14
153 reads
Steve notes that sometimes we message too often, but that's a human problem, not a tool issue.
2023-06-02
155 reads
The use of messaging dominates communication for Steve. Can you say the same thing?
2022-09-23
108 reads
2020-05-18
148 reads
Steve notes we all need to learn to communicate and share information better, especially while we are remote.
2020-05-14
122 reads
After installing Microsoft Teams, Steve has a bit of communication overload.
2019-05-13
217 reads
2016-05-02
106 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