Normal Data
More and more people are starting to perform data analysis, including DBAs, but they should be aware of what normal means for data.
2018-10-10 (first published: 2015-01-28)
203 reads
More and more people are starting to perform data analysis, including DBAs, but they should be aware of what normal means for data.
2018-10-10 (first published: 2015-01-28)
203 reads
Andy Warren talks about the single source of truth for information. It could be the database, but that's not always the best choice.
2018-10-09
249 reads
Steve has a troubleshooting experience that reminds him of a lesson he should have learned.
2018-10-08
76 reads
Performance is a common reason to monitor SQL Server. The work day of a database administrator is often interrupted with unexpected calls about slowness in applications or reports. But, how does the performance today compare to the performance last week or last month? Can the root cause of the issue be traced to the database […]
2018-10-08
45 reads
The idea of a single place to get the status of your environment is an interesting one.
2018-10-05
88 reads
2018-10-04
60 reads
2018-10-03
43 reads
Is an index change equivalent to a code change? Steve Jones asks the question and has a few thoughts.
2018-10-02
175 reads
With the need to remove older data, Steve thinks natural keys may be obsolete.
2018-10-01
219 reads
With lots of news coming out of Ignite, Steve talks about a few of the changes.
2018-10-01
49 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