How Perfect Should Our Software Be?
Steve talks about the level of engineering effort we need in software development.
2019-02-19
74 reads
Steve talks about the level of engineering effort we need in software development.
2019-02-19
74 reads
Steve talks about the need to be careful with backups in this age of malicious attackers.
2019-02-18
62 reads
2019-02-15
80 reads
2019-02-14
69 reads
Google was recently fined for GDPR violations. Steve wonders if their confusing documentation and tools are the problem.
2019-02-13
76 reads
Backblaze releases their new hard drive stats and there are some interesting items in the report.
2019-02-12
78 reads
It's not the zero'th time Phil Factor has complained about the madness of a binary collation.
2019-02-11
75 reads
A minor disaster for Steve reveals some cracks in his pre-DR planning.
2019-02-11
85 reads
There is more to our lives than work, and Steve asks that we learn more about other parts of life.
2019-02-08
82 reads
Learning active forgiveness can be a challenge, but it may help you build a better team.
2019-02-07
79 reads
Quite the title, so let me set the stage first. You have an Azure...
By HeyMo0sh
In the realm of software development and content creation, the deployment pipeline serves as...
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...
I have a quick question on Ola Hallengren Index Optimize Maintenance . Do we...
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