Surface Possibilities
The Surface is Microsoft's tabletop computer that can be controlled with your hands and doesn't require a keyboard. Is there value in this system for DBAs?
2009-01-16
839 reads
The Surface is Microsoft's tabletop computer that can be controlled with your hands and doesn't require a keyboard. Is there value in this system for DBAs?
2009-01-16
839 reads
The Surface is Microsoft's tabletop computer that can be controlled with your hands and doesn't require a keyboard. Is there value in this system for DBAs?
2009-01-16
637 reads
Over the last six months or so, Pepsi has been running a PepsiStuff promotion on many of their products. They...
2009-01-15
646 reads
As he prepares for a trip across the Atlantic, Steve Jones talks about some things he doesn't like about travel.
2009-01-15
83 reads
There was a time that I really felt I would be more productive with two monitors. I think I found...
2009-01-14
1,278 reads
Steve Jones talks about the lack of a big payday for tech workers. Not that most of us were expecting one.
2009-01-14
176 reads
2009-01-14
3,608 reads
Steve Jones talks about salaries and whether or not there's value in disclosing them. Respond to this Friday poll.
2009-01-14
78 reads
Steve Jones talks about salaries and whether or not there's value in disclosing them. Respond to this Friday poll.
2009-01-14
90 reads
Steve Jones talks about salaries and whether or not there's value in disclosing them. Respond to this Friday poll.
2009-01-14
54 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