2022-08-10 (first published: 2017-08-09)
294 reads
2022-08-10 (first published: 2017-08-09)
294 reads
One of the sales managers at Redgate Software posted an origin story about how he came to work at Redgate Software. It's an interesting story, and while I don't work in sales or have the same origin story, I don't know that I could have seen the place I'm in now early in my career. […]
2022-08-08
203 reads
Grant takes a few lessons for database DR from a nuclear accident in the US.
2022-08-06
102 reads
Microsoft reads your feedback, but doesn't always build it. However, your votes can sway them at times. Today Steve asks what you'd like to see added to SQL Server.
2022-08-05
165 reads
One place where Artificial Intelligence systems might shine is the medical field.
2022-08-03
179 reads
When a disaster occurs and your staff is working on it, what cadence of updates should your customers expect?
2022-08-01
189 reads
2022-07-30
332 reads
Most of work in teams, which means we are accountable to reach other, but we should also treat each other as we'd want to be treated.
2022-07-29
164 reads
There is a promotion for SQL Server 2012 customers that might be considering the cloud and worried about support.
2022-07-27
135 reads
I found this article to be an interesting look at how we might add ethics to AI systems in one area. As the article points out, "... today there is no broadly accepted AI ethics framework, or means to enforce it. Clearly, ethical AI is a broad topic ...". Glad someone is thinking, or many […]
2022-07-25
130 reads
By Steve Jones
“Don’t aim to have others like you; aim to have them respect you.” –...
Many years ago, before I joined Oracle, I was working on a major modernisation...
If you work with data pipelines, SQL, notebooks, or machine learning models, a Mac...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
WhatsApp: 0817839777 Jl. Jend. Ahmad Yani No.91, Magersari, Panjunan, Kec. Kota Kudus, Kabupaten Kudus,...
WhatsApp: 0817839777 Jl. Pemuda No.90-92, Kembangsari, Kec. Semarang Tengah, Kota Semarang, Jawa Tengah 50133
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