2017-02-02 (first published: 2013-09-16)
17,546 reads
2017-02-02 (first published: 2013-09-16)
17,546 reads
Create a repository of all your database devices and stay informed about changes in their size and usage.
2014-12-04
11,250 reads
Perform automated database restores and check the integrity of your backup files
2014-08-11
5,512 reads
Based on a linked server setup, you can check your SQL Server backups on multiple instances.
2013-04-22
4,091 reads
By Vinay Thakur
it has been a year since i have not written much on the blog...
By Steve Jones
on tenderhooks – adj. feeling the primal satisfaction of being needed by someone, which...
By DataOnWheels
I have been active in the data community throughout my career. I have met...
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