Another Reason to Avoid Cross-Database Ownership Chaining
This past weekend we were moving database files around because we added new LUNs to an existing production cluster. We...
2009-02-13
2,159 reads
This past weekend we were moving database files around because we added new LUNs to an existing production cluster. We...
2009-02-13
2,159 reads
I love my Kindle, but it uses an older e-ink technology that's a little slow and doesn't support color. Not...
2009-02-13
976 reads
I have a personal web site I set up years ago, mainly so I could post stuff for my extended...
2009-02-13
835 reads
I have always been of the personal opinion that all SQL Server tables have a clustered index. As part of...
2009-02-13
4,293 reads
There are a number of occasions when one might want to insert information at various places in a string. Where...
2009-02-12
1,885 reads
I think we've all seen and heard about Flight 1549 doing the emergency landing on the Hudson River. Truly a...
2009-02-12
568 reads
Someone tagged me, and I’ve lost the email in all the pile up from vacation where I was very, very...
2009-02-12
1,034 reads
Brent Ozar wrote his Things you know now and in it he says this under his first point, Pick one...
2009-02-11
2,232 reads
The Kindle 2 was announced recently and it’s on sale at Amazon, starting shipping Feb 24, 2009.
I’m glad I didn’t...
2009-02-11
795 reads
You may want to read Part 1, Part 2, and Part 3 before continuing. This time around I'd like to...
2009-02-11
549 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