Building Helpful Commit Messages
Using a VCS is a core skill, according to Steve. One part of that is learning to write better commit messages.
2019-07-08
489 reads
Using a VCS is a core skill, according to Steve. One part of that is learning to write better commit messages.
2019-07-08
489 reads
Today Steve talks about the soft skills and why these might be important as you advance in your career and grow into a senior role.
2019-07-02
545 reads
There is quite a bit of suffering within tech and caused by tech, from poorly commented code to shaming someone who asks a question on a forum. In this article, Samuel Nitsche explains why compassionate coding is a better way to go.
2019-06-27
Kathi Kellenberger discusses the challenge of deciding how to describe the content in the sessions she presents.
2019-06-10
388 reads
There are a couple big changes that the cloud brings to us. Steve has a few comments today.
2019-06-06
456 reads
2025-06-11 (first published: 2019-05-24)
533 reads
Hey there! I’m Jeff, the latest apprentice at Da...
2019-05-24
Burning out in an IT job is easier to do than it should be. Steve has a little advice today.
2019-05-23
448 reads
Edwin M Sarmiento is a Filipino Microsoft Data Pla...
2019-05-23
2019-05-22
By Zikato
A cryptic message, a book cipher hidden in art provenance records, and a trail...
By Steve Jones
A customer was trying to compare two tables and capture a state as a...
By Zikato
When I'm looking at a query, I bet it's bad if I see... a...
Comments posted to this topic are about the item BIT_COUNT II
Comments posted to this topic are about the item I Can't Make You Learn
Comments posted to this topic are about the item Why Your SQL Permissions Disappeared
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37 4 NULLWhat is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 4;See possible answers