Issue with SQL Server 2K5 SP3 CU5
In case you are considering to apply SQL Server SP3 CU5 (http://support.microsoft.com/kb/972511) to your system, I'd like to point out...
2009-09-12
1,576 reads
In case you are considering to apply SQL Server SP3 CU5 (http://support.microsoft.com/kb/972511) to your system, I'd like to point out...
2009-09-12
1,576 reads
Hello all!
We will be having our normal meeting at the Microsoft technology center sponsored by:
http://www.cactuss.org/Supporters/tabid/59/Default.aspx
Microsoft http://www.cactuss.org/MeetingInformation/tabid/63/Default.aspx
Stonebridge Plaza, Building One...
2009-09-12
1,025 reads
As most of you, we in the financial world have often been faced with the challenge of extracting data from...
2009-09-12
1,381 reads
I’ve known Joe for a number of years and have a lot of respect for his experience and knowledge around...
2009-09-11
861 reads
Back when I was a small tyke, I vividly remember playing an Avalon Hill board game called PanzerBlitz, which was...
2009-09-11
1,089 reads
Not everything that can be counted counts, and not everything that counts can be counted. - Albert Einstein
from 37 signals blog.
2009-09-11
937 reads
This is part two of three part series on creating, running, and scheduling Server Side Traces in SQL Server. Part...
2009-09-11
2,802 reads
Since I just spent a bit more than half of my 24 Hours of PASSpresentation on tuning queries talking about...
2009-09-11
654 reads
I want to thank the Space Coast User Group for having me over to speak on the Default Trace last...
2009-09-11
366 reads
We have several “Home Grown” applications at my current place of employment. This provides our development staff with a great...
2009-09-11
1,949 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