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)
235 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 James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
Quite the title, so let me set the stage first. You have an Azure...
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