What is the Cloud?
Today Steve has a few thoughts on what the cloud is in 2026. See if you like his analogy.
2026-06-22
364 reads
Today Steve has a few thoughts on what the cloud is in 2026. See if you like his analogy.
2026-06-22
364 reads
What happens when you have bad IT people working in your company? Steve Jones says that they always will be around, but we might not want to enable them to continue in this business when we find them.
2026-06-20 (first published: 2011-03-02)
2,203 reads
Change is unavoidable and always affects us. We can be both happy and sad about it as we move forward. A tribute today to Annabel, who retired from Redgate Software this week.
2026-06-19
74 reads
One of the positives of AI is that you can try things on which you might not otherwise have time to experiment.
2026-06-17
91 reads
Not every problem is going to fire off an alert, but it still might be something that you want to track.
2026-06-15
112 reads
Who is liable for mistakes made when listening to AI tooling? In at least one case, Steve isn't sure.
2026-06-13
79 reads
Are computers getting smart enough to pass the Turing test or are humans getting worse at representing themselves as intelligent?
2026-06-12 (first published: 2020-10-15)
367 reads
2026-06-08
199 reads
Is a data model important in modern software? Steve thinks it is and gives a few reasons why we might want to spend a little time on ensuring we have good models as we build software.
2026-06-05
125 reads
2026-06-03
91 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...
Hi All I am trying to find 'bad' characters that users might type in....
Comments posted to this topic are about the item Extreme DAX: Take your Power...
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