2017-07-06
65 reads
2017-07-06
65 reads
A holiday in the US has Steve Jones thinking about compromise and communication.
2017-07-04
51 reads
2017-07-03
97 reads
This week Steve asks you to make sure you practice your restore skills periodically.
2017-07-03
46 reads
Steve Jones saw a database design test for developers, but he's never been given one.
2017-06-30
261 reads
This week Steve Jones wonders what you might do if you discovered data corruption.
2017-06-29
65 reads
2017-06-28
108 reads
The ability to protect, and perhaps handle, sensitive data separately from other data is becoming more important. Steve Jones discusses the process and asks if it's something you perform on a regular basis.
2017-06-27
67 reads
Phil Factor reflects on the occasional benefits of document loss, whether accidental or less so.
2017-06-26
69 reads
If you have ideas for how to improve replication, Steve Jones is asking for them.
2017-06-26
143 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