2017-04-13
978 reads
2017-04-13
978 reads
Today Steve Jones discusses the idea of data value, and what it might mean to you, personally.
2017-04-12
56 reads
2017-04-12
880 reads
I’ve been putting it off, but in prepping for SQL Bits demos, I decided this was a good time to...
2017-04-11
640 reads
2017-04-11
1,029 reads
2017-04-10
863 reads
Once again I’m heading back to the Valley. I was accepted to speak at SQL Saturday #621 – Silicon Valley on...
2017-04-07
641 reads
This week Steve Jones is asking if you stage your database changes ahead of application changes.
2017-04-07 (first published: 2012-11-30)
226 reads
2017-04-07
1,093 reads
Working with someone that micro-managers you or watches your every action can be hard. Steve Jones has a few thoughts.
2017-04-06 (first published: 2013-02-04)
266 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