2017-01-05
83 reads
2017-01-05
83 reads
Numbers are both very useful and also susceptible to all sorts of attacks when their domain is limited. Steve Jones looks at some issues occurring in today's world.
2017-01-04
103 reads
2017-01-03
310 reads
Technology has made many advances in the world, but it has also eliminated many jobs. This Friday's poll asks how you feel about that as a technology worker.
2017-01-02 (first published: 2012-06-15)
275 reads
2016-12-30
113 reads
2016-12-29
78 reads
Syntactic sugar doesn't necessarily help a platform, but makes it easier or more fun to work on.
2016-12-27
187 reads
Today Steve Jones talks about the challenges of preserving data across long periods of time, decades perhaps.
2016-12-26 (first published: 2013-12-03)
135 reads
This week Steve Jones is asking about the timeframe for you to get a new SQL Server instance? Is it substantial? Do you really know? Answer this week.
2016-12-23 (first published: 2013-05-24)
133 reads
Auditing is a weak point in SQL Server according to Steve Jones. He looks at a few of its flaws.
2016-12-22 (first published: 2013-12-05)
282 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