Multiple Monitoring Tools
Steve wonders if it is worth it to use multiple monitoring systems for a database.
2025-06-20
147 reads
Steve wonders if it is worth it to use multiple monitoring systems for a database.
2025-06-20
147 reads
Today Steve wonders how many of you might be looking forward to SQL Server 2025 and consider it to be a major release.
2025-06-18
236 reads
Before I start the whining (whinging if you prefer), let me just say I have the greatest job in the world. I'm exceedingly lucky to have it. I'm grateful as can be. And someone else (looking at you Tim) can get it when they pry it from my dead cold fingers. With that out of […]
2025-06-16 (first published: 2025-05-31)
163 reads
If you have had to fix the thing you just fixed with a fix, you might enjoy today's editorial.
2025-06-16
110 reads
Steve talks a bit about the choice to ask for a raise in the current climate.
2025-06-14
84 reads
Today Steve talks about the concept of what a failure is when deploying changes.
2025-06-13
79 reads
2025-06-11 (first published: 2019-05-24)
531 reads
Steve talks about the process of decision making with idea for shortening the time taken.
2025-06-09
90 reads
Steve looks back at the Mythical Man Month, a book every software engineer and manager should read.
2025-06-06
108 reads
2025-06-04
107 reads
By Steve Jones
It’s Prime Day. A few of my recommendations, since I want to do some...
With Fabric Mirroring, Microsoft is promoting a nice and appealing story for operational reporting...
If you’ve been watching AI roll through the data community and thinking, “this seems...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
WA:08218154393 Jl. Paus No.81, RT.1/RW.8, Wil, Kec. Pulo Gadung, Kota Jakarta Timur, Daerah Khusus...
Comments posted to this topic are about the item Concurrency and Baseline Control: Level...
I have this code on SQL Server 2022. What happens when it runs all at once?
DROP TABLE IF EXISTS dbo.Commission GO CREATE TABLE dbo.Commission (id INT NOT NULL IDENTITY(1,1) CONSTRAINT CommissionPK PRIMARY KEY , salesperson VARCHAR(20) , commission VARCHAR(20) ) GO INSERT dbo.Commission ( salesperson, commission) VALUES ( 'Brian', 12 ), ( 'Brian', 'None' ) GOSee possible answers