2016-12-12
97 reads
2016-12-12
97 reads
Measuring the performance of systems isn't always just CPU, RAM, and Disk IO. Today Steve Jones looks at business based metrics.
2016-12-09
107 reads
It seems that everyone has a different idea on how to interview people. Today Steve Jones looks at the technique of having someone improve some code in real time.
2016-12-08
106 reads
I have seen three common responses to database messes. My favorite is nuclear.
2016-12-06
264 reads
Should we be considering our Work/Training Balance as part of our careers?
2021-06-23 (first published: 2016-12-05)
236 reads
2016-12-05
99 reads
This week Steve Jones examines the idea of making jobs in SQL Server, first class citizens.
2016-12-02
105 reads
Learning more about your craft can translate into more earnings, but it won't be easy.
2016-12-01
110 reads
There are always people that ask workers to deceive, defraud, or mislead customers. This is true for software developers as well.
2016-11-30
105 reads
Today Steve Jones looks at the CREATE OR ALTER syntax, added in SQL Server 2016 SP1.
2016-11-29
168 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