A Tool is Better than a Script
Tools are important to DBAs, but they need to be reliable, both in what they do, and how they work.
2026-05-01
163 reads
Tools are important to DBAs, but they need to be reliable, both in what they do, and how they work.
2026-05-01
163 reads
2026-05-01
1,092 reads
PASS Summit East is in one week. I was on the road last week in the UK and then Houston for the Houston AI-lytics event. I had been a...
2026-04-30
27 reads
2026-04-29
162 reads
2026-04-29
867 reads
I wrote an article recently on the JSON_OBJECTAGG function, but neglected to include an example of why it can behave weirdly. This post looks at something you might not...
2026-04-27 (first published: 2026-04-15)
199 reads
I had a few random questions from my Running a Local LLM on Your Laptop session at the Houston AI-lytics 2026 event last week, so this post looks at...
2026-04-27
20 reads
The spring PASS On Tour event is coming to Chicago in a few weeks.
2026-04-27
74 reads
Learn how the JSON_ARRAYAGG() function works in SQL Server 2025.
2026-04-27
4,097 reads
Thanks to everyone for attending my session on running a Local LLM. If you have any questions, please feel free to reach out with them. The slides with links...
2026-04-25
22 reads
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...
The Joyful Craftsmen has become the new owner of Revolt BI. The merger creates...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Comments posted to this topic are about the item SQL Server Enum Implementation: A...
Comments posted to this topic are about the item BIT_COUNT I
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