Good Security Needs Layers
A good security system needs layers since our applications and platforms don't exist in a vacuum.
2018-04-18
56 reads
A good security system needs layers since our applications and platforms don't exist in a vacuum.
2018-04-18
56 reads
Machine Learning is an exciting branch of computer science, but it doesn't solve all our problems.
2018-04-17
69 reads
The pre-conference sessions for the 2018 PASS Summit were released.
2018-04-16
71 reads
Grant talks about the challenges of helping people in online forums and getting them to learn rather than grab the first solution.
2018-04-16
142 reads
2018-04-13
73 reads
When we build software, are we empathetic to how others (literally) view our software?
2018-04-12
77 reads
2018-04-11
55 reads
2018-04-10
164 reads
Steve asks the question today of how you might measure downtime and the scope you are concerned about.
2018-04-09
100 reads
Phil Factor argues that the ability to write simply and expressively is a much under-valued skill in IT, and explains the main traps to avoid.
2018-04-09
109 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,...
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