Is there a Difference in Virtual Events?
Steve wonders if any of you see much of a difference between any of the virtual events taking place today.
2020-12-09
88 reads
Steve wonders if any of you see much of a difference between any of the virtual events taking place today.
2020-12-09
88 reads
2020-12-09
433 reads
I started to add a daily coping tip to the SQLServerCentral newsletter and to the Community Circle, which is helping me deal with the issues in the world. I’m...
2020-12-08
28 reads
The annual Advent of Code challenge is underway, and you can use it to help grow your career.
2020-12-08
228 reads
2020-12-08
753 reads
This month Lisa Griffin Bohm is the host and thanks to her from hosting. She was one of the last people I pressured lightly to host. She came up...
2020-12-08
17 reads
I started to add a daily coping tip to the SQLServerCentral newsletter and to the Community Circle, which is helping me deal with the issues in the world. I’m...
2020-12-07
29 reads
Today Steve notes that we often don't have all the knowledge or information we need, but we can work to acquire it.
2020-12-07
104 reads
2020-12-07
754 reads
Today Steve looks at legacy systems and the challenges they pose as we try to adapt them to new requirements.
2020-12-05
207 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