2016-08-23 (first published: 2015-05-01)
1,467 reads
2016-08-23 (first published: 2015-05-01)
1,467 reads
2013-04-17 (first published: 2013-04-03)
1,460 reads
2013-03-19 (first published: 2013-03-01)
1,052 reads
Script to generate script to detach or attach user databases
2013-02-15 (first published: 2013-01-29)
5,858 reads
Script to reorganize all indexes on all tables in user databases
2013-02-14 (first published: 2013-01-31)
3,258 reads
2013-02-06 (first published: 2012-12-27)
1,846 reads
Changes the database compatibility level of all databases to the given level.
2013-01-31 (first published: 2013-01-07)
929 reads
2012-12-03 (first published: 2012-11-07)
2,023 reads
2012-10-04 (first published: 2012-04-10)
2,021 reads
2012-07-25 (first published: 2012-07-12)
2,514 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