SQL Saturday #21 (Orlando) Recap
Saturday, 10\17, marked the third year for SQL Saturday here in Orlando and each year it gets bigger and better....
2009-10-26
794 reads
Saturday, 10\17, marked the third year for SQL Saturday here in Orlando and each year it gets bigger and better....
2009-10-26
794 reads
Here I go again, trying to finish up the translation. Thank you very much to local MVP Eric Moreau for his help fixing...
2009-10-26
855 reads
One week from today I will be in Seattle for my first ever PASS Summit. One of the things I...
2009-10-26
601 reads
Encryption is a tough subject, but it’s one that’s fascinated me for years. I downloaded PGP when it came out...
2009-10-26
1,056 reads
It's one week until the PASS Summit. At this time next week I'll be on a plane, heading to Seattle...
2009-10-26
677 reads
Well, it's a wrap! Saturday has come and gone, but memories will go on. It was great to see so...
2009-10-26
755 reads
I presented Social and Not So Social Networking for the DBA. Of the attendees, 16 submitted an eval. Here are...
2009-10-25
555 reads
I posted some thoughts on business cards awhile back, had used up the ones I had and was time to...
2009-10-25
682 reads
Welcome back to class, folks, here at SQL University. This week we're going to take a look at the basics...
2009-10-25
10,877 reads
If you have a database application that is running slowly, or is straining the server, what do you do? After...
2009-10-25
3,150 reads
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...
By Zikato
A cryptic message, a book cipher hidden in art provenance records, and a trail...
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
Comments posted to this topic are about the item I Can't Make You Learn
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