Having Data Modeling Standards
Today Steve talks about data modeling and how standards can transfer knowledge between developers.
2023-11-22
471 reads
Today Steve talks about data modeling and how standards can transfer knowledge between developers.
2023-11-22
471 reads
2023-11-20
251 reads
I'm writing this sitting at the PASS Data Community Summit. It's been a fantastic event. I gave a community session on Azure DevOps. I was able to help Redgate launch a new product. I've received a bunch of hugs from VERY dear old friends. I've met a ton of people. It's been great. Allow me […]
2023-11-18
82 reads
2023-11-17 (first published: 2017-12-08)
436 reads
2023-11-15 (first published: 2017-12-05)
194 reads
The idea of working on just projects is tailor made for a data professional. Or is it?
2023-11-13 (first published: 2017-10-24)
206 reads
Steve doesn't think you need a degree to work in technology and more companies agree with this all the time.
2023-11-11
96 reads
2023-11-10
247 reads
In the past, Steve hasn't often felt management considered databases to be important, but that is changing.
2023-11-08
182 reads
When we need to be heroes in IT on a regular basis, that's a problem for Steve.
2023-11-06
280 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...
WhatsApp:0818-751-777 Area Street Festival, Ruko No 1 & 1A, CBD, Jl. Galuh Mas Raya,...
WhatsApp:0818-751-777 Jl. Galunggung No.65 11 dan 65/A1, Gading Kasri, Kec. Klojen, Kota Malang, Jawa...
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