Coaching the Digital Transformation
Helping your business get value from a digital transformation can start within your own team or group.
2023-02-08
114 reads
Helping your business get value from a digital transformation can start within your own team or group.
2023-02-08
114 reads
2023-02-06 (first published: 2023-02-04)
263 reads
Building software means not only considering the data people expect, but also edge cases. Steve asks if you know what those edge cases are?
2022-11-14
294 reads
Our design and modeling is often done with some level of uncertainty. Steve has a few guidelines today.
2022-10-26
177 reads
2022-10-24
196 reads
2022-10-17
104 reads
Building software is becoming harder as new attacks try to inject malicious code into products.
2022-10-12
126 reads
The user experience from our software is important. Maybe more than many developers realize.
2022-10-01
68 reads
We often live with our early decisions on technology, which can be a challenge over time.
2022-09-12
161 reads
2022-06-27
174 reads
By ReviewMyDB
Fabric has CI/CD built in, but if you've tried to use it for database...
By Steve Jones
attriage – n. the state of having lost all control over how you feel...
By Zikato
A cryptic message, a book cipher hidden in art provenance records, and a trail...
Title pretty much says it all - can this be done? I've tried several...
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
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