A New PiHole in the Sky
Last year I set up a PiHole server on my RaspberryPi to help block some ads and malicious stuff (tracking,...
2019-01-11 (first published: 2019-01-03)
2,395 reads
Last year I set up a PiHole server on my RaspberryPi to help block some ads and malicious stuff (tracking,...
2019-01-11 (first published: 2019-01-03)
2,395 reads
What popular tool has he created in 2006?
What popular tool has he created in 2006? How many people do live...
2019-01-11
184 reads
I don’t have any statistics but I think most IT Professionals in the SQL Server field are managing or developing...
2019-01-11
465 reads
I’m starting a little series on some of the nice features/capabilities in Snowflake (the cloud data warehouse). In each part, I’ll highlight something that I think it’s interesting enough to share....
2019-01-11
187 reads
I first came across the value for RetrievedFromCache when I was reading a confusing execution plan. At first, I thought...
2019-01-11
714 reads
I have been in a serious relationship for more than 12 years. My partner in this relationship has brought me...
2019-01-11 (first published: 2019-01-01)
3,207 reads
Last July (yes, it’s taken me 5+ months to finally finish this) Steve Jones (b/t) suggested that it might be...
2019-01-10
173 reads
Cool new toys/tools have been made available to the data professional. Among these tools are query data store and automatic...
2019-01-10 (first published: 2019-01-04)
2,701 reads
March of 2019 would have marked that start of the 8th year of WaterOx Consulting, Inc. running. That isn’t going...
2019-01-10
179 reads
There are several organizations which take hair donations, but the one I prefer to donate to is Wigs for Kids,...
2019-01-10
190 reads
By Steve Jones
I wrote about learning today for the editorial: I Can’t Make You Learn. I...
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...
I have a need to execute a stored procedure and return the results to...
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
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