2022-05-16 (first published: 2018-01-15)
289 reads
2022-05-16 (first published: 2018-01-15)
289 reads
Phil Factor on a tale of how dodgy mock data derailed an otherwise-convincing prototype.
2018-01-15
198 reads
When you need to debug or troubleshoot, Steve Jones wants you to disable, not drop, objects.
2018-01-12
69 reads
Do you know how to answer normalization questions in an interview? Steve Jones gives you a few ideas and recommends you brush up on your knowledge.
2022-05-20 (first published: 2018-01-11)
649 reads
2018-01-10
243 reads
An analysis of salaries uses statistics to determine significance of the data. Is this data science?
2018-01-09
85 reads
The staff that build your systems are more important than your choice of technology.
2022-05-23 (first published: 2018-01-08)
245 reads
With bugs in our CPUs, everyone needs to plan on patching or upgrading.
2018-01-05
101 reads
Some companies don't want to use tools, but that doesn't make sense to Steve Jones.
2018-01-04
104 reads
2018-01-03
75 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