Dancing Robot Goes Rogue
The headline says it all and Steve thinks this could be a problem in the digital world as well.
2026-03-28
71 reads
The headline says it all and Steve thinks this could be a problem in the digital world as well.
2026-03-28
71 reads
Too many people don't value their time appropriately, especially at work. If you don't, likely your boss doesn't either.
2026-03-27
98 reads
There are a lot of tasks that DBAs and developers struggle to get done. These little things can be important, and perhaps AI can help us keep on top of them.
2026-03-25
103 reads
When working with an AI LLM, you have so much knowledge at your fingertips.
2026-03-23
129 reads
2026-03-20
118 reads
Steve had to deal with a customer that changed data types in columns often. Is that something you experience?
2026-03-18
110 reads
Self-assessment and self-examination can be important in many fields, especially technology in the age of AI.
2026-03-16
116 reads
Many organizations haven't standardized the way they deploy code to databases, even when they do so for applications. Steve has a few thoughts on this today.
2026-03-13
83 reads
Steve used to shut down systems to upgrade them, but lately he makes changes while they're running.
2026-03-11
121 reads
Choosing to upgrade isn't as simple as many of us would like. Steve has a few thoughts today on the decision to move to a new version of a database server.
2026-03-09
87 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