Breaking Down Your Work
Self-assessment and self-examination can be important in many fields, especially technology in the age of AI.
2026-03-16
46 reads
Self-assessment and self-examination can be important in many fields, especially technology in the age of AI.
2026-03-16
46 reads
Many organizations haven't standardized the way they deploy code to databases, even when they do so for applications. Steve has a few thoughts on this today.
2026-03-13
40 reads
Steve used to shut down systems to upgrade them, but lately he makes changes while they're running.
2026-03-11
86 reads
Choosing to upgrade isn't as simple as many of us would like. Steve has a few thoughts today on the decision to move to a new version of a database server.
2026-03-09
68 reads
Steve thinks communication is a core sill for technology people, especially in the age of AI.
2026-03-06
60 reads
Today Steve talks about deployments and whether you should roll forward or roll back.
2026-03-04
86 reads
How do you detect issues in your systems? Testing? Monitoring? Steve Jones has a few thoughts that we should find ways to do so before our customers.
2026-03-02 (first published: 2017-03-01)
269 reads
Steve reminisces on some of the fun times he's had at SQL Server Central.
2026-02-27
85 reads
2026-02-25
81 reads
As Steve uses AI more, it seems determinism isn't something you get out of many LLMs.
2026-02-23
104 reads
By HeyMo0sh
As someone who works in DevOps, I’m always focused on creating systems that are...
By Brian Kelley
I am guilty as charged. The quote was in reference to how people argue...
By Steve Jones
Learn how to tie a bowline knot. Practice in the dark. With one hand....
Comments posted to this topic are about the item Restoring On Top II
Comments posted to this topic are about the item SQL Art 2: St Patrick’s...
Comments posted to this topic are about the item Breaking Down Your Work
I have a database, DNRTest, that has a number of tables and other objects in it. The other day, I was trying to mock up a test and ran this code on the same server:
-- run yesterday CREATE DATABASE DNRTest2 GO USE DNRTest2 GO CREATE TABLE NewTable (id INT) GOToday, I realize that I need a copy of DNRTest for another mockup, and I run this:
-- run today USE Master BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO RESTORE DATABASE DNRTest2 FROM DISK = 'dnrtest.bak' WITH REPLACEWhat happens? See possible answers