I’m a Bingo Square!
If you meet me at PASS, you can win prizes!
OK, so maybe there’s a little more to it than that. ...
2009-10-21
715 reads
If you meet me at PASS, you can win prizes!
OK, so maybe there’s a little more to it than that. ...
2009-10-21
715 reads
Hey there folks. I finally was able to get my persona domain name from a squatter who has been holding...
2009-10-21
396 reads
Picking up from yesterday, once we got through the confusion of the room changes everything settled down. I checked the...
2009-10-21
615 reads
I've started using SCOM 2007 R2, which has given me a chance to try out the Operations Manager Shell. The Ops Mgr Shell...
2009-10-21
1,017 reads
Mike Walsh, who is a PASS volunteer, has done a nice job organizing the PASS Summit Birds of a Feather...
2009-10-21
914 reads
My presentation and sample files from SQLSaturday in Orlando are now online for you to download. Check them out at...
2009-10-21
390 reads
In my previous post I discussed the week that led up to the SQLSaturday event. In this post I’ll tell...
2009-10-21
683 reads
UPDATE: I just finished up my presentation slides for this upcoming NY/NJ SQL User Group meeting, on Saturday, 10/24/2009. I may cut...
2009-10-21
938 reads
I was recently contacted by a developer with what I would consider to be a very simple question. How do...
2009-10-21
2,702 reads
I’ll be on the Twitter Bingo card along with a lot of other great SQL Server folks at Pass! Quest...
2009-10-21
575 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