2017-03-10
987 reads
2017-03-10
987 reads
Steve Jones says you should treat your database servers like cattle. It makes life easier.
2017-03-09
348 reads
2017-03-09
992 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2017-03-08
947 reads
Today Steve Jones talks about the checklist you would want if you needed to move a SQL Server instance to new hardware.
2017-03-08
12,747 reads
2017-03-07
87 reads
2017-03-07
1,125 reads
Containers are valuable in many software domains. Are there places we, as data professionals, would like to use software containment?
2017-03-06
95 reads
An open letter to Microsoft from the CEO of Mandriva Linux might not have been the best idea.
2017-03-04 (first published: 2007-11-30)
374 reads
Today Steve Jones asks what default values you might choose for new columns in a table.
2017-03-03
127 reads
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...
The Joyful Craftsmen has become the new owner of Revolt BI. The merger creates...
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