Closing Down for the Year
Today is my last day of work for 2015. I’m actually proud that I’ve managed to take almost all my...
2015-12-24
662 reads
Today is my last day of work for 2015. I’m actually proud that I’ve managed to take almost all my...
2015-12-24
662 reads
We all make mistakes, but it's important that we revise our code to correct them over time.
2015-12-24
124 reads
2015-12-24
1,649 reads
I saw a question recently that went like this: I get one full backup from FTP. I’ll get daily log...
2015-12-23 (first published: 2015-12-14)
1,758 reads
2015-12-23
1,529 reads
A new series of attacks were proven recently using music files to attach embedded systems in cars. Could this be another attack vector that we need to worry about?
2015-12-22 (first published: 2011-03-23)
583 reads
2015-12-22
1,525 reads
The new Star Wars film opens today, and while I won’t see it then, perhaps I’ll get to it early...
2015-12-18
628 reads
I ran across this site after reading a post from Jeremiah Peschka. It’s an interesting idea, and since I’m trying...
2015-12-18 (first published: 2015-12-11)
2,066 reads
2015-12-18
1,603 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