Expensive CPUs
Adding non-core database features to a system can expand its capabilities, but it can also be an expensive use of your hardware and software licenses.
2026-02-04
96 reads
Adding non-core database features to a system can expand its capabilities, but it can also be an expensive use of your hardware and software licenses.
2026-02-04
96 reads
A data center is a complex beast. Is it worth building and maintaining your own? Steve has a few thoughts on a data center versus a cloud.
2025-02-05
156 reads
There is still a huge demand for data centers, both from cloud vendors and private enterprises.
2025-01-06
131 reads
Steve sees disk drives as shrinking to the point of being invisible to most of us.
2024-09-09
321 reads
2024-06-17
233 reads
Today Steve wonders if the technology for storage and data transfers has superseded the need for portable drives.
2024-01-15
151 reads
Steve has a few thoughts on building your own PC to help you with work or your career.
2022-06-10
237 reads
2021-04-28
107 reads
Steve doesn't think he will ever work on server class machine again in terms of hardware. He wonders how many of you feel the same.
2021-02-17
140 reads
Let's Encrypt upgrades their database servers and publishes the details.
2021-02-01
130 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...
Comments posted to this topic are about the item Concurrency and Baseline Control: Level...
Comments posted to this topic are about the item Spending Time in the Office
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