SQL Nexus
I was lucky enough to be accepted to speak at SQL Nexus in Copenhagen and I attended the event a...
2016-05-12
655 reads
I was lucky enough to be accepted to speak at SQL Nexus in Copenhagen and I attended the event a...
2016-05-12
655 reads
2016-05-12
1,136 reads
One of the great things about IT is that we have so many tools to help us do our jobs. We can even build tools as needed. So why don't more IT people take advantage of this?
2016-05-11 (first published: 2012-05-23)
470 reads
2016-05-11
1,349 reads
Today Steve Jones wants you to look forward in your career. Do you enjoy working with software and technology? Do you plan on doing this for the rest of your career?
2016-05-10 (first published: 2012-04-27)
271 reads
2016-05-10
1,444 reads
2016-05-09
1,320 reads
It's important that you remember to live and enjoy your life as it passes by. Today Steve Jones reminds us that we want to work to live, but also plan to live and plan for the future.
2016-05-06 (first published: 2012-05-02)
436 reads
2016-05-06
1,332 reads
After a few days in Copenhagen for SQL Nexus, I traveled to London late last night, and am now making...
2016-05-05
457 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. Brigjen Jl. Slamet Riyadi No.3, Kauman, Kec. Ps. Kliwon, Kota Surakarta,...
WhatsApp: 0817839777 Jl. Jend. Sudirman No.391 A, Brubahan, Purwanegara, Kec. Purwokerto Tim., Kabupaten Banyumas,...
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