How Much Can You Learn?
This Friday Steve Jones wonders about the upper limits for what you may learn in a year.
2025-09-01 (first published: 2016-04-08)
259 reads
This Friday Steve Jones wonders about the upper limits for what you may learn in a year.
2025-09-01 (first published: 2016-04-08)
259 reads
Steve has a few thoughts on the lack of data sovereignty in the cloud, with an outlook that isn't very positive.
2025-08-29
102 reads
2025-08-27
206 reads
2025-08-25 (first published: 2025-08-11)
162 reads
I just got back from the Redgate Summit events in New York City, where I had the chance to present, swap stories, and nerd out with a lot of brilliant data folks. I came home energized… and then promptly slept for 14 hours on Thursday. That’s the best kind of exhaustion in my book. The […]
2025-08-23
60 reads
This Friday Steve asks about what you're looking forward to in SQL Server 2025, if anything.
2025-08-22
134 reads
Asking for a raise is a scary event for many employees. Today Steve gives you a few things to think about and some advice on how to go about changing your job.
2025-08-20
104 reads
Is AI going to kill off a lot of data professional jobs? Steve doesn't think so, but judge for yourself.
2025-08-18
131 reads
In my ongoing war against shadow AI, I’ve been testing out alternatives that most everyone can use, no matter what your technical expertise. Although somewhat limited depending on your resources available, (laptop CPU/GPU, memory, etc.) If you want to try the newest open models without sending your prompts to the cloud, or you just want […]
2025-08-16
698 reads
Today Steve is asking if any of you use Standard Edition with the coming of a developer edition that matches it.
2025-08-15
117 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