The Future of the SQLSaturday Tools
Every year when many of the SQLSaturday event leaders meet at the Summit the topic of improvements to the tools...
2017-11-23 (first published: 2017-11-08)
2,085 reads
Every year when many of the SQLSaturday event leaders meet at the Summit the topic of improvements to the tools...
2017-11-23 (first published: 2017-11-08)
2,085 reads
Just a few notes:
Weather on Wed was great, ok on Thurs, cold on Fri. Have had worse years!Felt like I...
2017-11-08
433 reads
It’s on! Free registration at EventBrite.
I wrote last month about not being able to make it to Seattle on Monday...
2017-10-29
587 reads
Note: Published too soon, so lots of edits from the first version. Sorry for any confusion.
I had a question from...
2017-10-24 (first published: 2017-10-14)
1,233 reads
SQLSaturday is really three sites. The public facing one (www) plus one for event admins and one for HQ to...
2017-10-22
387 reads
This year we held our fourth Student to IT Pro Seminar for the students at Seminole State College. It runs...
2017-10-22
386 reads
Part 1 will be about things we did (or didn’t) do and some lessons learned. In Part 2 I will...
2017-10-19
424 reads
This was the first time in a long time that I managed the check-in process of SQLSaturday Orlando and was...
2017-10-18 (first published: 2017-10-09)
1,519 reads
Following up on my post about forming a non profit here in Orlando, here are some notes that might help...
2017-10-14
436 reads
We’ve haven’t had a good solution for managing money for SQLSaturday and our groups here in Orlando. In the early...
2017-09-12
423 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...
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