DevOps is Really Helpful
Steve Jones talks about the practical benefits of using DevOps to smooth out your software development.
2018-07-02
158 reads
Steve Jones talks about the practical benefits of using DevOps to smooth out your software development.
2018-07-02
158 reads
This is a short series of posts on the courses I took with Brent Ozar. I actually completed the courses...
2018-07-02
947 reads
2018-07-02
796 reads
I had my 24 Hours of Pass session today, Database DevOps to Ensure Compliance, and my demo broke. At least,...
2018-06-29 (first published: 2018-06-12)
2,148 reads
Steve Jones asks about your plans to get away from work and refresh yourself.
2018-06-29
63 reads
The June update for T-SQL Tuesday #97. I made a plan and it’s hard to stick to.
tl;dr – Very little done.
I...
2018-06-29
812 reads
2018-06-29
666 reads
This is an error that has plagued SQL Server for a long time. It should be fixed.
2018-06-28
343 reads
2018-06-28
872 reads
Work sometimes gets in the way of work. Steve Jones notes this can cause stress and problems over time.
2018-06-27 (first published: 2014-10-21)
230 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...
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