Industry Experience... Required?
This Friday, a guest poll and editorial from Adrian Nichols wondering about the value of experience in a particular area.
2009-01-01
128 reads
This Friday, a guest poll and editorial from Adrian Nichols wondering about the value of experience in a particular area.
2009-01-01
128 reads
This Friday, a guest poll and editorial from Adrian Nichols wondering about the value of experience in a particular area.
2009-01-01
140 reads
Steve Jones looks back at the past year and database news that has occurred.
2008-12-31
120 reads
It's the first day of 2009 and Steve Jones gives a few predictions for the new year in this editorial.
2008-12-31
79 reads
It's the first day of 2009 and Steve Jones gives a few predictions for the new year in this editorial.
2008-12-31
60 reads
It's the first day of 2009 and Steve Jones gives a few predictions for the new year in this editorial.
2008-12-31
85 reads
XBRL is yet another use of XML, this time for financial reporting. It is supposed to be in place for...
2008-12-30
1,724 reads
Steve Jones gives one last update on energy issues in the US in 2008 with a look at the construction and building industries.
2008-12-30
101 reads
2008-12-30
2,825 reads
Steve Jones is considering changes to SQLServerCentral and presents a few ideas today.
2008-12-29
165 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