What Write Ahead Logging Is and Why It Matters
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,264 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,264 reads
Today, Kendra Little talks about code reviews and why they should be done early.
2024-04-29 (first published: 2020-02-07)
320 reads
2020-02-25
270 reads
2020-02-21
738 reads
Today, Kendra Little talks about reteaming.
2020-02-21
520 reads
2020-02-20
654 reads
2020-02-18
1,102 reads
2020-02-17
1,005 reads
Today, Kendra Little talks about how DevOps adoption affects developer productivity and time.
2020-02-14
197 reads
Today, Kendra explains what's holding organizations back from implementing Database DevOps.
2020-02-12
228 reads
The other day I came across an interesting repo on github, KubeDiagrams. What this...
By Steve Jones
I wrote about getting the Redgate Test Data Manager set up in 10 minutes...
SQL Server migrations are a headache, ask anyone who’s been through the pain of...
1, Customer table [TBLMEMBER] 's structure CREATE TABLE [dbo].[TBLMEMBER]( [TRANNO] [int] IDENTITY(1,1) NOT NULL,...
Comments posted to this topic are about the item Counting Bits II
What is the result of this query in SQL Server 2022+?
select bit_count('7')See possible answers