I Need a Logo
I've been doing the Voice of the DBA podcasts for over a year now, and I really enjoy them. I've...
2009-07-08
895 reads
I've been doing the Voice of the DBA podcasts for over a year now, and I really enjoy them. I've...
2009-07-08
895 reads
I finally made the call today to reserve my room in Baton Rouge for SQLSaturday #17 in Baton Rouge, LA....
2009-07-07
569 reads
There are a lot of exciting events happening in the next 2 months that you should be involved in so I...
2009-07-07
822 reads
I recently saw that Steve Jones had posted an update on his 2009 goals and realized that is was about...
2009-07-07
368 reads
It seems that I see more and more posts about people trying to shrink their transaction logs. It's getting to...
2009-07-07
1,850 reads
Since the beginning of SQLSaturday I’ve covered most of the news here on my blog, beginning this week I’ll be...
2009-07-06
464 reads
Okay I was tagged by Tim Mitchell on the Deserted Island scenario started by Tim Ford which goes like this:
So...
2009-07-06
493 reads
Originally written in French last year, now revised for you in my native language below:
You've probably all noticed a change...
2009-07-06
3,498 reads
One of the things I recommend to people that are looking to get into blogging is that they write 10...
2009-07-06
353 reads
I'll be presenting two sessions at the SQL Saturday event in Baton Rouge on August 1. I'll be presenting a...
2009-07-06
489 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