Notes on SQLSaturday Admin Tools
Introduction
One of the items I’ve had on my todo list for a while is to write up notes on the...
2014-10-08
745 reads
Introduction
One of the items I’ve had on my todo list for a while is to write up notes on the...
2014-10-08
745 reads
The Board of Directors has extended voting in the current election through October 14th. Read the post from President Thomas...
2014-10-07 (first published: 2014-09-30)
6,129 reads
Miscellaneous notes as I think on this.
I’ve been reading through feedback from the students. Reading the raw feedback is interesting...
2014-10-06
759 reads
We’ve got a good handful of events listed for After Hours so far, but couldn’t we have more? A couple...
2014-10-02
837 reads
This past week we did our first try at the Student to IT Pro Seminar, run concurrently with SQLSaturday Orlando....
2014-10-01 (first published: 2014-09-29)
6,808 reads
Took a break to check email and saw the confirmation that I was renewed for another year. Pleasant news for...
2014-10-01
591 reads
Notes from a speaker/volunteer perspective:
It was a lot of fun to talk to the students at our Student to IT...
2014-09-30
1,127 reads
I’ll be driving to Viera for the monthly Space Coast SQL Users Group meeting next week. Topic still to be...
2014-09-30
999 reads
This past Saturday we held our eight annual SQLSaturday. I’ll write some notes about the event and post today or...
2014-09-29
1,008 reads
First, a reminder/disclaimer that I am serving on the PASS NomCom this year. The four candidates in the election are...
2014-09-26 (first published: 2014-09-23)
6,525 reads
By HeyMo0sh
In the realm of software development and content creation, the deployment pipeline serves as...
By Vinay Thakur
I wrote about TempDB Internals and understand that Tempdb plays very important role on...
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