VSTS–Changing the Default Build Queue
I wrote recently about the Release agent using the hosted queue as the default, which is sometimes a problem. The...
2017-06-12
547 reads
I wrote recently about the Release agent using the hosted queue as the default, which is sometimes a problem. The...
2017-06-12
547 reads
Part of a series looking back at Build 2017, going over the 20+ pages of notes I took.
One of the...
2017-06-09 (first published: 2017-05-24)
1,539 reads
2017-06-09
959 reads
SQL Server is becoming more capable all the time, requiring fewer human resources for basic management.
2017-06-08
90 reads
2017-06-07
908 reads
2017-06-06
110 reads
2017-06-05
86 reads
In keeping with the idea I don’t want this to get out of date, this is VSTS as of Jun...
2017-06-05
611 reads
2017-06-05
959 reads
Today Steve Jones talks presentations, specifically the best way to share information on a projector.
2017-06-02
177 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...
WhatsApp:0818-751-777 Wisma Asia, Jl. Letjen S. Parman No.Kav. 79, RT.4/RW.9, Kota Bambu Sel., Kec....
Comments posted to this topic are about the item Concurrency and Baseline Control: Level...
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