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
68 reads
Steve thinks communication is a core sill for technology people, especially in the age of AI.
2026-03-06
68 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
60 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
145 reads
Steve notes that sometimes we message too often, but that's a human problem, not a tool issue.
2023-06-02
149 reads
The use of messaging dominates communication for Steve. Can you say the same thing?
2022-09-23
94 reads
2020-05-18
134 reads
Steve notes we all need to learn to communicate and share information better, especially while we are remote.
2020-05-14
113 reads
After installing Microsoft Teams, Steve has a bit of communication overload.
2019-05-13
209 reads
2016-05-02
90 reads
By Steve Jones
“Don’t aim to have others like you; aim to have them respect you.” –...
If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...
By ChrisJenkins
Have you been thinking about migrating your reporting to Microsoft Fabric or Snowflake but...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
WA:08218154393 Jl. RS. Fatmawati Raya No.6 A, RT.1/RW.5, Cipete Sel., Kec. Cilandak, Kota Jakarta...
Comments posted to this topic are about the item SQL Server Enum Implementation: A...
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37What is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 3;See possible answers