New SQL Standard Article
A new article for the SQL Standard is now available. You can find the article here. The article is by...
2010-05-20
606 reads
A new article for the SQL Standard is now available. You can find the article here. The article is by...
2010-05-20
606 reads
The last post in the series on finding the sizes of your tables showed us how we could find that...
2010-05-19
1,435 reads
On the evening of May 13th, S3OLV held its monthly meeting. We had some really good discussion, and got to...
2010-05-14
700 reads
Once again it looks like I was early for the T-SQL Tuesday event. Last month I submitted my entry on...
2010-05-11
877 reads
It is once again that time of year. It is time to nominate the DBA in your life for the...
2010-05-11
936 reads
This is just a quick note to remind any interested parties that the May S3OLV meeting will be held this...
2010-05-11
468 reads
In the first post of this series I highlighted and described two stored procedures that are shipped from Microsoft. These...
2010-05-05
4,706 reads
In SQL Server there are two stored procedures that help one to determine the size of a table. One is...
2010-05-03
877 reads
Finally I am putting down to paper my marathon race list for this season. Some of my favorite races are...
2010-04-30
1,482 reads
For the April T-SQL Tuesday, I blogged about a report to find information on the BLOBs in a database. I...
2010-04-27
1,231 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