2018-07-10
75 reads
2018-07-10
75 reads
I got the news of my MVP award last week. I’m honored that Microsoft feels I do quite a bit...
2018-07-09
341 reads
2018-07-09
81 reads
2018-07-09
1,663 reads
I used to use Crashplan. This was about $150 a year, but I could to 5 machines. I used to...
2018-07-06 (first published: 2018-06-29)
3,007 reads
I saw a tweet a short time ago from Drew Furgiuele about pi-hole.net. He noted this was a near use...
2018-07-06
473 reads
The use of NULL values in a database can be controversial. Today Steve talks about his views on this concept.
2018-07-06
150 reads
2018-07-06
706 reads
2018-07-05
531 reads
This is a short series of posts on the courses I took with Brent Ozar. I actually completed the courses...
2018-07-05 (first published: 2018-06-28)
2,718 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