2017-05-22
1,005 reads
2017-05-22
1,005 reads
Today was my presentation in the April GroupBy conference lineup. I presented on DevOps and changing your database development to...
2017-05-19 (first published: 2017-04-28)
1,688 reads
I love LA. In many ways, it’s a fun city to visit, and I love taking a few minutes, even...
2017-05-19
765 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2017-05-18
638 reads
2017-05-18
889 reads
2017-05-17
856 reads
Part of a series looking back at Build 2017, going over the 20+ pages of notes I took.
Last week I...
2017-05-15
670 reads
Computing systems and algorithms continue to improve, especially in the machine learning and AI spaces. What does that mean for us humans?
2017-05-15
74 reads
Not the batch separator, but the GO language.
I’m always interested in learning new things, and GO has been one of...
2017-05-15
1,115 reads
There has been some discussion and concern over the changes to the speaker selection process for the PASS Summit. I’ve...
2017-05-12 (first published: 2017-05-01)
1,052 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