CI and CD Aren't Magic
The techniques for Continuous Integration (CI) and Continuous Delivery (CD) don't make software better by themselves. It takes some investment and work by your staff as well.
2018-08-01 (first published: 2014-10-27)
161 reads
The techniques for Continuous Integration (CI) and Continuous Delivery (CD) don't make software better by themselves. It takes some investment and work by your staff as well.
2018-08-01 (first published: 2014-10-27)
161 reads
2018-08-01
727 reads
Security is a big deal, and Steve Jones wonders if most data professionals would be aware that they had been hacked.
2018-07-31 (first published: 2014-10-30)
237 reads
2018-07-30
1,012 reads
There are always generic items that we encounter in life, things where it doesn't seem to matter to each of us what brand/price/model we pick. This Friday Steve Jones asks what you might consider to be generic in your job.
2018-07-27 (first published: 2010-02-05)
399 reads
2018-07-27
899 reads
Steve Jones notes that the Moneyball phenomenon has come to managers and perhaps a little training and data can help find us better managers.
2018-07-26 (first published: 2014-12-10)
174 reads
2018-07-26
966 reads
This is a series of posts on what my day is like. I don’t do a lot of production technical...
2018-07-25
943 reads
2018-07-25 (first published: 2014-12-18)
289 reads
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