2015-11-09
235 reads
2015-11-09
235 reads
I’ve written a few posts on the Redgate Software blog to try and show how I see the DLM model,...
2015-11-09
583 reads
Losing a laptop isn't something most of us would want to deal with, usually because of the expense. However, there may be other implications that concern you. Share your worries with us today.
2015-11-06
125 reads
2015-11-06
1,646 reads
Steve Jones is pleased to see some changes at Azure that make the database a stronger platform.
2015-11-05
111 reads
One of the things we do at Redgate is release software often. It’s not just that we want you to...
2015-11-05
828 reads
2015-11-05
1,245 reads
2015-11-04
143 reads
A quick tip to help you get system object suggestions from SQL Prompt.
2015-11-04 (first published: 2012-05-01)
1,250 reads
2015-11-04
4,105 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