Service Pack 3 and Servicing
It was announced yesterday that Service Pack 3 for SQL Server 2005 is coming! I've been trying to get people...
2008-04-16
754 reads
It was announced yesterday that Service Pack 3 for SQL Server 2005 is coming! I've been trying to get people...
2008-04-16
754 reads
One of the dangers of mentoring someone on your team is that you can easily be perceived as biased, and...
2008-04-16
471 reads
I'm sure that Monday was the most relaxed day that we will have this week. The conference did not start until...
2008-04-15
598 reads
I think sometimes a lot of what we call mentoring might be appropriately called coaching. Before you go trying to...
2008-04-15
489 reads
I am actually stunned. I knew that more bandwidth makes a difference, but having way more bandwidth is truly amazing.
My...
2008-04-14
753 reads
I arrived Sunday in Seattle from St. Louis for the MVP Global Summit. The shuttle from the airport was filled...
2008-04-14
425 reads
Just received word that Microsoft has posted 3 new courseware titles under the "What's New in SQL Server 2008" umbrella. ...
2008-04-14
1,407 reads
Actually it wasn't really an official day. I came to Seattle a day early to see the Mariner's play and...
2008-04-14
674 reads
It's always good to find a book or two on a subject when you want to be good at something....
2008-04-14
513 reads
Mentoring is something I think a lot of us wish for and that few of us find. Few businesses encourage...
2008-04-13
523 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