Developer Time is More Valuable Than Ever
Today, Kendra Little talks about how DevOps adoption affects developer productivity and time.
2025-05-23 (first published: 2020-02-14)
384 reads
Today, Kendra Little talks about how DevOps adoption affects developer productivity and time.
2025-05-23 (first published: 2020-02-14)
384 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,760 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
279 reads
Today, Kendra Little talks about reteaming.
2020-02-21
527 reads
Today, Kendra explains what's holding organizations back from implementing Database DevOps.
2020-02-12
241 reads
Today, Kendra talks about why version control for databases is important and how to get started.
2020-02-04
501 reads
Today, Kendra explains why she doesn't like shared development databases.
2020-01-31
502 reads
Today, Kendra Little explains why a query may run faster the second time you run it.
2020-01-29
2,491 reads
Today Kendra talks about two of the online options used when working with indexes.
2020-01-14
346 reads
By Vinay Thakur
I wrote about TempDB Internals and understand that Tempdb plays very important role on...
By Vinay Thakur
continuing from Day 1 where we covered the history of AI and GPT family,...
By Steve Jones
It’s a day off for Redgate today. This is our annual wellbeing day, where...
Comments posted to this topic are about the item A Quick Restore
Comments posted to this topic are about the item Guarding Against SQL Injection at...
While doing some testing of an application, I wanted to reset my environment after doing some testing with this code:
USE DNRTest BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO /* Bunch of stuff tested here */RESTORE DATABASE DNRTest FROM DISK = 'dnrtest.bak' WITH REPLACEWhat happens if this runs, assuming the "bunch of stuff" isn't anything affecting the instance. See possible answers