SQL Saturday Minneapolis Precon – Complete Primer to SQL Server Virtualization – Coming Soon!
This is just a quick reminder to encourage you to attend my next round of all-day precon training session at the...
2016-09-14
394 reads
This is just a quick reminder to encourage you to attend my next round of all-day precon training session at the...
2016-09-14
394 reads
SQL Server 2016 supports AFTER triggers! I could find no good example of how to do this with a project...
2016-09-12
743 reads
Bottlenecks in your testing tools, infrastructure, or methodology might just hurt your load test results, and the results can skew...
2016-09-16 (first published: 2016-09-12)
1,309 reads
I’m happy to announce that I’m speaking at this year’s IT/Dev Connections conference held at the ARIA Resort in Las Vegas...
2016-09-08
344 reads
I’m proud to be speaking at this year’s IT/Dev Connections conference in Las Vegas during the week of October 10th!...
2016-09-06
353 reads
I’m very excited to be presenting in the opening slot for this year’s 24 Hours of PASS – Summit Preview Edition...
2016-09-06
372 reads
On episode of one of our favorite podcasts – 10 on Tech from ActualTech Media – recently focused on a discussion with James...
2016-08-24
432 reads
I’m pleased to announce that I’m launching my next round of all-day precon training session at the upcoming SQL Saturday in Minnesota on...
2016-08-08
393 reads
This year’s involvement in VMware‘s VMworld conference is up on the content catalog! I am extremely proud to announce my participation...
2016-07-29
869 reads
I’m pleased to announce that I’m launching my next round of all-day precon training session at the upcoming SQL Saturday in Louisville on...
2016-07-18
412 reads
By HeyMo0sh
In my experience, FinOps success has never been just about tools or dashboards. It...
By HeyMo0sh
As a DevOps person, I know that to make FinOps successful, you need more...
By HeyMo0sh
As someone who works in DevOps, I’m always focused on creating systems that are...
Comments posted to this topic are about the item Restoring On Top II
Comments posted to this topic are about the item SQL Art 2: St Patrick’s...
Comments posted to this topic are about the item Breaking Down Your Work
I have a database, DNRTest, that has a number of tables and other objects in it. The other day, I was trying to mock up a test and ran this code on the same server:
-- run yesterday CREATE DATABASE DNRTest2 GO USE DNRTest2 GO CREATE TABLE NewTable (id INT) GOToday, I realize that I need a copy of DNRTest for another mockup, and I run this:
-- run today USE Master BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO RESTORE DATABASE DNRTest2 FROM DISK = 'dnrtest.bak' WITH REPLACEWhat happens? See possible answers