SQL RNNR

Blog Post

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

Blog Post

DTS and 2008

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

Blog Post

Space Used

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

Blog Post

Plagiarized

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

Blogs

Advice I Like: Respect

By

“Don’t aim to have others like you; aim to have them respect you.” –...

Setting Up a Mac for Data Engineering and AI Work

By

If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...

Want to look at cloud reporting but not sure what the costs will be?

By

Have you been thinking about migrating your reporting to Microsoft Fabric or Snowflake but...

Read the latest Blogs

Forums

SQL Art, Part 4: Happy 4th of July — A British DBA's Guide to Celebrating a War We Don't Talk About

By Terry Jago

Comments posted to this topic are about the item SQL Art, Part 4: Happy...

SQL Server Enum Implementation: A Single-Row View Strategy for Avoiding Magic Values

By Ivica Borscak

Comments posted to this topic are about the item SQL Server Enum Implementation: A...

BIT_COUNT I

By Steve Jones - SSC Editor

Comments posted to this topic are about the item BIT_COUNT I

Visit the forum

Question of the Day

BIT_COUNT I

In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:

UserID  UserPermissions
15
23
37
What is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount
from dbo.UserPermission
where UserID = 3;

See possible answers