Execution Plans, What Do I Look At?
The question came up, what are the top 3-5 things that you look at in a query. I realized then...
2012-01-30
1,827 reads
The question came up, what are the top 3-5 things that you look at in a query. I realized then...
2012-01-30
1,827 reads
Another article has published over at MSSQLTips.com. This one covers how to identify what stored procedures are set to run when...
2012-01-30
937 reads
Last time I dealt with the creation of subdirectories, in one or more root locations, to house my database backups....
2012-01-30
1,840 reads
Slammer
By now you must have heard of the SQL Slammer worm. It was quite an infectious little nuisance. The harm...
2012-01-30 (first published: 2012-01-24)
2,425 reads
During a large ETL process from a staging table , UPDATE was creating an error on a CONVERT.
Msg 245, Sev 16,...
2012-01-30
1,068 reads
On January 19th, I published a post about the Dedicated Administrator Connection. I spoke very briefly of the system base tables in that article. Today, I want to dive...
2012-01-30
8 reads
On January 19th, I published a post about the Dedicated Administrator Connection. I spoke very briefly of the system base...
2012-01-30
1,364 reads
I am officially announcing that I have now become an independent consultant and business owner. Becoming independent has always been...
2012-01-30
1,875 reads
The Idera ACE program is something I’ve been involved with for over a year now. I’ll share a bit of...
2012-01-30
1,669 reads
Today we have an alert from one of the client server about blocking, I have immediately start looking at it...
2012-01-30
1,723 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,...
By Steve Jones
It’s a day off for Redgate today. This is our annual wellbeing day, where...
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