2018-05-17
118 reads
2018-05-17
118 reads
Disappointment is hard, but you get to choose how you react to it.
2018-05-14
119 reads
AD Authentication in SQL Server has been around for a long time, so why do we still use SQL Authentication?
2018-03-30
425 reads
2018-02-01
92 reads
Often we are encouraged to learn the latest things, but sometimes the old stuff is worth knowing too.
2017-12-26
89 reads
2017-12-18
67 reads
2017-12-11
87 reads
It is getting to be that time of year. Holiday parties are you for them or against
2017-11-14
79 reads
A lot of us are introverted, so is there anything that can be done about it?
2017-11-09
122 reads
2017-11-01
98 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