Mind Over Milkshake (Thoughts Matter)
You mind can influence your body. Maybe. A study Steve found says that could be true, but he certainly thinks it can influence your attitude and how you respond to situations at work.
2024-01-31
141 reads
You mind can influence your body. Maybe. A study Steve found says that could be true, but he certainly thinks it can influence your attitude and how you respond to situations at work.
2024-01-31
141 reads
Today we have a guest editorial where Andy Warren asks you if you know how to ask for things at work. Many IT works struggle to ask for resources, but read on to understand how Andy might help you get more done at your job.
2024-01-29
119 reads
During one my yearly review, I got one particularly interesting piece of feedback. “You need to share the work you are doing and share with the company.” This is basically a matter of letting people know about the stuff we are putting out on Simple-Talk.com. It is something that is regularly done here, but to […]
2024-01-27
97 reads
Do you enjoy your workplace or employer? Steve does and has a few thoughts on what that is like for him.
2024-01-26
168 reads
Learning to make decisions and then get work done is important to Steve. Read his thoughts today on many of the decisions software teams need to make.
2024-01-24
184 reads
2024-01-22
189 reads
This week I had the opportunity to join many of the U.S.-based Redgaters in Austin to talk about 2024 plans, hear from the product teams, and have some much-needed fellowship. One thing was particularly clear as I listened to various leaders and product managers – the customer drives everything we do. And I have to […]
2024-01-20
60 reads
How do you determine if you're at the top of your profession? Andy Warren has a few thoughts today.
2024-01-19
117 reads
NoSQL is an option for a database platform and Steve wonders if you can discuss and debate the use of NoSQL for your business partners? Or are you going to learn more? He is.
2024-01-17
257 reads
Today Steve wonders if the technology for storage and data transfers has superseded the need for portable drives.
2024-01-15
151 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