Half Baked Features
Steve Jones notes that some features aren't fully developed, but that's not a reason to avoid releasing them.
2016-05-17
159 reads
Steve Jones notes that some features aren't fully developed, but that's not a reason to avoid releasing them.
2016-05-17
159 reads
2016-05-17
1,410 reads
Adding a release management tool to your software development is a sign of maturity.
2016-05-16
72 reads
The next version of SQL Server 2016 will be released on June 1, 2016, which means you can start planning those upgrades.
2016-05-16
107 reads
2016-05-16
1,084 reads
Redgate recently released SQL Monitor 5.2, which is the latest upgrade to our monitoring/alerting/troubleshooting product for DBAs. This was the...
2016-05-13
696 reads
2016-05-13
85 reads
2016-05-13
1,869 reads
In this piece, Steve Jones shows how you can enforce a requirement of a Primary Key (PK) with a unit test, but also allow exceptions where needed.
2016-05-12
1,361 reads
A simple change might solve some of those tempdb issues various customers experience.
2016-05-12
196 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