2018-05-28
36 reads
2018-05-28
36 reads
2018-05-25
179 reads
2018-05-24
107 reads
2018-05-23
94 reads
Everyone should be running DBCC CHECKDB on their systems. We not have some help in determining if we are doing this.
2018-05-22
92 reads
With each recent version of SQL Server, Microsoft has added features that can be used to improve query performance with much less effort than traditional index and query tuning require. First was Query Store, introduced with 2016. When enabled, this feature allows you to easily find regression in query performance due to changing execution plans. […]
2018-05-21
81 reads
2018-05-21
161 reads
2018-05-17
109 reads
Does the tone of communication matters to you that much that it affects your work in some way?
2018-05-15
113 reads
Disappointment is hard, but you get to choose how you react to it.
2018-05-14
108 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