PASS Chapter Starting Up in Charleston, SC
Woo hoo! Charleston, SC is starting up a Professional Association for SQL Server official chapter. It is being started up...
2009-09-14
1,096 reads
Woo hoo! Charleston, SC is starting up a Professional Association for SQL Server official chapter. It is being started up...
2009-09-14
1,096 reads
I wanted disseminate some news to our DBA audience regarding the long anticipated release of Microsoft's new operating system, Windows...
2009-09-14
1,004 reads
This past Friday I received a call from our systems team stating that they were running low on Disk Space...
2009-09-14
4,377 reads
Join us today for a SQL Lunch
Date: 9/14/2009
Time: 11:30 AM
Reserve your seat:https://www1.gotomeeting.com/join/509742840
Presenter: Jeff Cole. Jeff has been designing and building...
2009-09-14
720 reads
I saw a post recently that asked about backing up the Resource database. The person said they just realized that...
2009-09-14
1,042 reads
Through tomorrow you can register for the very discounted rate of $1395 – details at http://summit2009.sqlpass.org. Historically we see a surge...
2009-09-14
633 reads
In a couple of previous posts (Part One and Part Two), I shared some thoughts about starting a career path...
2009-09-14
1,369 reads
I’ve been on the board just about 8-1/2 months, so I’m not doing too bad on updates, but think I’ll...
2009-09-13
947 reads
We’ve got a great meeting coming up with Todd Holmes doing a mini presentation on Backup Basics, followed by Jorge...
2009-09-13
237 reads
Just a quick update on the SQL Saturday event we are planning for the Dallas area next year. Late last...
2009-09-13
670 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