Reflecting on Ten Years of SQLSaturday
It’s hard to believe it’s been more than 10 years since we started the planning for the first event in...
2016-12-16 (first published: 2016-11-30)
1,163 reads
It’s hard to believe it’s been more than 10 years since we started the planning for the first event in...
2016-12-16 (first published: 2016-11-30)
1,163 reads
Concurrent with SQLSaturday Orlando we ran our third student seminar. This is our way of giving back to the college...
2016-11-29
693 reads
This year we held our 10th SQLSaturday, a very nice milestone to hit. I’ll reflect in a separate post on...
2016-11-28
726 reads
Today we have a guest editorial from Andy Warren that looks at how we might divvy up our workload in a company.
2016-11-18
87 reads
Major sponsors in our space get hundreds of emails from us each year, all asking for money. Those are all...
2016-11-11
398 reads
One of the topics I forgot to mention from the Roundtable was a swell of dissatisfaction with the GAP. Not...
2016-11-10
388 reads
Following up on my notes about the 2016 SQLSaturday Roundtable I wanted to write more about the ROI of SQLSaturday....
2016-11-09
478 reads
Each year PASS holds a meeting for SQLSaturday event leaders and key players on Tuesday morning. It’s a valuable meeting,...
2016-11-08
468 reads
Back in September I received a call from my MVP lead that I wasn’t being renewed. Not a big surprise,...
2016-11-07
366 reads
I’ll have several more posts this week on specific activities at the Summit, but wanted to start with how the...
2016-11-07
374 reads
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
Quite the title, so let me set the stage first. You have an Azure...
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