Database Cattle
Steve Jones says you should treat your database servers like cattle. It makes life easier.
2017-03-09
344 reads
Steve Jones says you should treat your database servers like cattle. It makes life easier.
2017-03-09
344 reads
Today Steve Jones talks about the checklist you would want if you needed to move a SQL Server instance to new hardware.
2017-03-08
12,326 reads
2017-03-07
86 reads
Containers are valuable in many software domains. Are there places we, as data professionals, would like to use software containment?
2017-03-06
88 reads
If a successful IT career is just as much about tenacity, interest and retention as it is about brainpower, then how does one go about continuous learning?
2017-03-06
97 reads
Today Steve Jones asks what default values you might choose for new columns in a table.
2017-03-03
124 reads
Read why Solomon Rutzky is excited about SQL Server running on Linux.
2017-03-02
562 reads
How do you detect issues in your systems? Testing? Monitoring? Steve Jones has a few thoughts that we should find ways to do so before our customers.
2026-03-02 (first published: 2017-03-01)
224 reads
2017-02-28
227 reads
Machine learning and AI are becoming more and more prevalent, which Steve Jones thinks is good.
2017-02-27
113 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