June S3OLV Wrapup
Last night we had our monthly Chapter User group meeting in affiliation with PASS. Honestly, the experience was quite humbling...
2010-06-11
585 reads
Last night we had our monthly Chapter User group meeting in affiliation with PASS. Honestly, the experience was quite humbling...
2010-06-11
585 reads
We have come to that time of month again – blog party. This time, the party is hosted by Jorge Segarra...
2010-06-08
1,036 reads
The S3OLV monthly meeting is being held this Thursday. We will be meeting at the same location and time as...
2010-06-07
488 reads
Today I am finally getting around to the review of the first chapter as promised. I talked about the book...
2010-06-07
799 reads
Have you ever been required to update your SQL Server environment and needed to test it? I know, rhetorical question....
2010-06-04
673 reads
At long last I am bringing the next installment in this mini-series. You can find the rest of the articles...
2010-05-25
1,436 reads
Last week I posted an article about plagiarism. This is a follow-up to that. After posting that blog article, Steiner...
2010-05-24
947 reads
Recently I received a new opportunity via email. Steve Jones at SQLServerCentral sent me an email to see if I...
2010-05-21
650 reads
Today I ran into an interesting website. While I was trying to locate information concerning a SQL Saturday event, I...
2010-05-20
715 reads
Today I ran into an interesting website. While I was trying to locate information concerning a SQL Saturday event, I...
2010-05-20
537 reads
By Steve Jones
“Don’t aim to have others like you; aim to have them respect you.” –...
If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...
By ChrisJenkins
Have you been thinking about migrating your reporting to Microsoft Fabric or Snowflake but...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Comments posted to this topic are about the item SQL Server Enum Implementation: A...
Comments posted to this topic are about the item BIT_COUNT I
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37What is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 3;See possible answers