Remote Remote Work
Working remotely can be more than working at home, which Steve thinks helps the work-life balance.
2022-10-21
149 reads
Working remotely can be more than working at home, which Steve thinks helps the work-life balance.
2022-10-21
149 reads
2020-10-02
129 reads
Steve talks a bit about the new challenges of working in a different environment and the challenges you might face.
2020-09-22
101 reads
2020-09-02
167 reads
Working from home during the pandemic is likely to change many things, and Steve discusses a few today.
2020-06-11
124 reads
It's been nearly two months since the Redgate Software offices closed. I am not normally in the office, but I did cancel a trip that I normally would have taken to touch base with a number of teams. That's a minor change for me, but a still a change. It's much less than the disruption that […]
2020-05-28
129 reads
This week Steve talks a bit about working remotely, which is something more of us are doing these days.
2020-04-24
214 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