Do It My Way
Actually more it's "our way" as mentioned in Andy's post, and less my way than by committee these days with...
2008-02-08
808 reads
Actually more it's "our way" as mentioned in Andy's post, and less my way than by committee these days with...
2008-02-08
808 reads
Part of a conversation I had at the South Florida Code Camp was what I thought about various features that...
2008-02-07
451 reads
Had a friend forward this link to me about Chipotle and it's worth reading if you either A, like Chipotle/Mexican...
2008-02-06
434 reads
Windows 2008 RTM'd this week, which means that in a few weeks, at the February Launch event, there will be...
2008-02-06
776 reads
Introducing Linq is now available as a free download and along with chapters from Introducing ASP.Net Ajax and Introducing Silverlight....
2008-02-05
514 reads
The Midlands PASS Chapter is pleased to announce our own Paul Shearer and Bill Stevenson as our speakers for our...
2008-02-05
627 reads
I never did complete my MCDBA. As I was preparing to, I transitioned to my systems architect role, meaning I...
2008-02-05
3,209 reads
There's a lot of buzz in the development community about LINQ in general, and for those that do data access...
2008-02-04
464 reads
James Luetkehoelter has announced his book on SQL Server Disaster Recovery is complete. It is published by aPress and due...
2008-02-04
901 reads
This is a small surprise, mainly because it looked like only Visual Studio 2008 was actually going to make the...
2008-02-04
617 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