Why I Don’t Like Shared Development Databases
Today, Kendra explains why she doesn't like shared development databases.
2026-05-15 (first published: 2020-01-31)
656 reads
Today, Kendra explains why she doesn't like shared development databases.
2026-05-15 (first published: 2020-01-31)
656 reads
Today, Kendra Little talks about how DevOps adoption affects developer productivity and time.
2025-05-23 (first published: 2020-02-14)
387 reads
Kendra Little talks about write ahead logging in SQL Server, one of the basic concepts that developers and DBAs should understand.
2024-06-12 (first published: 2020-01-20)
4,857 reads
Today, Kendra Little talks about code reviews and why they should be done early.
2024-04-29 (first published: 2020-02-07)
338 reads
2020-02-25
281 reads
Today, Kendra Little talks about reteaming.
2020-02-21
533 reads
Today, Kendra explains what's holding organizations back from implementing Database DevOps.
2020-02-12
243 reads
Today, Kendra talks about why version control for databases is important and how to get started.
2020-02-04
507 reads
Today, Kendra Little explains why a query may run faster the second time you run it.
2020-01-29
2,518 reads
Today Kendra talks about two of the online options used when working with indexes.
2020-01-14
350 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