Who is Irresponsible?
It can be irresponsible to use AI, but is it in many cases? Steve has a few thoughts.
2026-04-15
103 reads
It can be irresponsible to use AI, but is it in many cases? Steve has a few thoughts.
2026-04-15
103 reads
2026-04-13
111 reads
And bring a towel. If you don't know what I'm talking about, you have homework. You know with that lead in I'm going to talk about AI. Sorry, can't help it. It's on my mind quite a lot. It's in the news, oh, a whole lot. The majority of those stories can be summed up […]
2026-04-11
97 reads
Acting with confidence is great, but how do you decide when there are potential impacts and concerns about your actions? Steve has a few thoughts today.
2026-04-10
76 reads
Code reviews can be challenging in many places, and with AI, could be even more of an issue in the future.
2026-04-08
115 reads
2026-04-06 (first published: 2018-05-21)
430 reads
There’s a saying in security circles: the weakest link isn’t the lock on the front door but the spare key under the mat. This past week gave us two vivid, simultaneous demonstrations of that principle, and if you’re building anything in the AI space right now, both deserve your full attention. The Mythos Leak and […]
2026-04-04
171 reads
A company has both a server without a password and live data in test environments. Not a good situation.
2026-04-03 (first published: 2019-05-07)
469 reads
2026-04-01
195 reads
2026-03-30
137 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