Thoughts and Prayers
Ken Henderson passed away this past week. I found out about it from the MVP forums as well as from...
2008-01-29
1,450 reads
Ken Henderson passed away this past week. I found out about it from the MVP forums as well as from...
2008-01-29
1,450 reads
I know I'm not the first in the SQL Server community to post this, but Ken Henderson has passed away...
2008-01-29
1,918 reads
As I mentioned yesterday the article I wrote on IT Transparency is finally live today and now the wait to...
2008-01-29
1,304 reads
I'll be there doing a presentation on Transactional Replication, and my friend Chris Rock will be doing on on LINQ to...
2008-01-28
1,385 reads
The new version of Metasploit is out. Included is a GUI interface. It's a complete re-write in Ruby (note to...
2008-01-28
1,518 reads
First saw this off of Planet MySQL:
New Vendor Neutral Database Certification (Dave's Stuff)
Following the link to the CIW site, there...
2008-01-28
2,869 reads
Citrix is changing the name of its flagship product from Citrix Presentation Server (CPS) to XenApp. More from the blogosphere:
Citrix...
2008-01-28
1,999 reads
Tomorrow SSC is scheduled to publish an article I wrote on IT Transparency which gives a first person account of...
2008-01-28
1,424 reads
Saw this first on Aaron Stebner's blog:
.NET Framework 3.5 deployment guides have been published on MSDN
Guidance information for both...
2008-01-28
1,571 reads
This one is geared towards IT management:
IT Manager Webcast: Dynamic IT and Security (Part 4 of 5): Identity and Access...
2008-01-28
1,651 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