Crazy Egg
I know, I should have put more in the title. Crazy Egg is a web page traffic analysis tool that...
2009-10-28
565 reads
I know, I should have put more in the title. Crazy Egg is a web page traffic analysis tool that...
2009-10-28
565 reads
In the first installment of this discussion, I talked about the challenges facing database professionals and others with respect to...
2009-10-28
1,865 reads
One of the things that I've asked DBAs, and I see asked often, is how much does your data change?...
2009-10-28
2,484 reads
2009-10-28
576 reads
For the most part, I have an easy schedule. I’ll be in the 600 hallway most morning after the keynote...
2009-10-28
728 reads
I saw too many questions on forum asking step by step process of configuring replication I have these links in...
2009-10-28
1,138 reads
Running the Profiler GUI against a production server is not something you should do. I’ve outlined my research into exactly...
2009-10-28
878 reads
If you will be attending either the 2009 PASS Community Summit in Seattle, WA, from November 2-5; or the SQL...
2009-10-27
440 reads
Do you know what determinism is? It's something that comes up periodically in Books Online as various SQL objects require...
2009-10-27
1,836 reads
After making seven presentations in Australia, I headed to New Zealand where I made four presentations in four cities, on...
2009-10-27
486 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