We Still Need Human Judgment
Computers aren't necessarily more infallible than humans, and they aren't necessarily even going to make better decisions. We still need humans in the decision process.
2014-12-08 (first published: 2010-06-23)
196 reads
Computers aren't necessarily more infallible than humans, and they aren't necessarily even going to make better decisions. We still need humans in the decision process.
2014-12-08 (first published: 2010-06-23)
196 reads
Have you learned anything new lately? Steve Jones asks the question after an interesting T-SQL Tuesday.
2014-12-04
163 reads
What's the value of code to your organization? Steve Jones thinks it's much larger than many people believe.
2014-12-02
136 reads
Phil Factor argues that as terrorists and criminals exploit the new opportunities that open up as technology develops, technologists must work with Governments to ensure thoughtful custodianship of data, and sensitivity towards legitimate privacy.
2014-12-01
89 reads
Interviewing people is hard to do well. Steve Jones talks about a technique that might help you better choose good employees for your organization.
2014-12-01
138 reads
Steve Jones thinks that a personal development plan is important and talks today a little about how you should build one.
2014-11-28 (first published: 2010-07-14)
798 reads
Too many meetings happen in software teams. Steve Jones says that when scheduling meeting, you should be aware of the cost, and only include those people that need to be there.
2014-11-27 (first published: 2010-04-26)
211 reads
This editorial was originally published on November 12, 2009. It is being re-run as Steve is on holiday. Virtualization is touted as a great way to save money, but it's a one time event. Once you've consolidated a server, you can't do it again. However consolidation isn't necessarily the same and Steve Jones tells us why.
2014-11-25 (first published: 2009-11-12)
236 reads
Database drift is the difference between two database schemas. Today Steve Jones discusses the concept and wonders how often it happens.
2014-11-24
143 reads
2014-11-24
167 reads
By HeyMo0sh
In the realm of software development and content creation, the deployment pipeline serves as...
By Vinay Thakur
I wrote about TempDB Internals and understand that Tempdb plays very important role on...
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