2015-10-23
1,454 reads
2015-10-23
1,454 reads
I’m excited. Git support is growing in SQL Source Control and the release recently contains Git push/pull support. If you...
2015-10-22
1,946 reads
As data professionals, we might carry lots of information with us that relates to our organization. Will we get caught up in government issues as we cross borders?
2015-10-22
205 reads
The CAP Theorem talks about the properties of distributed systems, and how you can really only have two of them in any system.
2015-10-21
110 reads
A quick tip to help you set your object names to your preferred case in T-SQL code.
2015-10-21 (first published: 2012-05-01)
2,283 reads
It’s a week before the Networking Dinner at the PASS Summit. Andy Warren and I are hosting the event next...
2015-10-20
496 reads
It’s a week before the Networking Dinner at the PASS Summit. Andy Warren and I are hosting the event next...
2015-10-20
537 reads
2015-10-20
1,580 reads
2015-10-16
1,593 reads
It seems as though Git is taking the world by storm as the Version Control System (VCS) of choice. TFS...
2015-10-15 (first published: 2015-10-05)
7,606 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