How many environments?
This Friday Steve Jones looks at the setup for your software pipeline. He's wondering how complex it is with how many separated environments.
2015-08-14
156 reads
This Friday Steve Jones looks at the setup for your software pipeline. He's wondering how complex it is with how many separated environments.
2015-08-14
156 reads
2015-08-14
1,266 reads
We’ve got another DLM workshop on Database Source Control taking place in New York City on August 27. It’s in...
2015-08-13 (first published: 2015-08-06)
1,266 reads
2015-08-13
1,394 reads
This is a good T-SQL Tuesday topic for me. This month Ken Wilson asks everyone to write on encryption, which...
2015-08-11
909 reads
Are you brave enough to redeploy your applications from a VCS? Have you really captured all your code?
2015-08-10
91 reads
2015-08-10
124 reads
This week Steve Jones wants to know about your efforts to create bonds with co-workers and build a team. Does your company do anything to help facilitate this?
2015-08-07
120 reads
2015-08-06
256 reads
I was playing around with some XML lately, and had to load a file that looked like this::
I ran a...
2015-08-06
1,643 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...
WA:08218154393 Jl. Paus No.81, RT.1/RW.8, Wil, Kec. Pulo Gadung, Kota Jakarta Timur, Daerah Khusus...
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