Upcoming SQL Saturday Precon Training – Columbus OH
I have an exciting training session announcement! On Friday, July 10th, I will be presenting a full-day training class ahead...
2015-06-26
596 reads
I have an exciting training session announcement! On Friday, July 10th, I will be presenting a full-day training class ahead...
2015-06-26
596 reads
Thank you all for attending my MSSQLTipswebinar today with Sumeet Bansal from Tegile Systems! In the presentation, I made reference to...
2015-06-23
615 reads
This Tuesday, June 23rd, at 3pm Eastern time I will be co-presenting a free live webinar with Sumeet Bansal from...
2015-06-22
505 reads
I’m learning how beneficial SIOS iQ is to your virtual SQL Server environments, and you should too.
SIOS iQ is a new...
2015-06-15
523 reads
If you live in the Midwest region around Iowa, Nebraska, South Dakota, and Minnesota, you should consider attending the first-ever...
2015-06-09
540 reads
A few weeks ago, while at the incredible SQL Saturday Madison, I had a great discussion with a few of the...
2015-06-03 (first published: 2015-05-22)
2,407 reads
The third Level in my Stairway to Virtualization series is now live at SQL Server Central! In this Level, we will...
2015-05-20
468 reads
Yesterday the next installment of the Stairway to Virtualization series went live on SQL Server Central! This level focuses on...
2015-05-14
442 reads
Recently, I was able to help SimpliVity work to develop a reference architecture document for running resource-intensive SQL Server virtual machines on...
2015-05-13
1,222 reads
A few weeks ago Bala Narasimhan from PernixData and I recorded a short conversation where we discussed the tips and tricks...
2015-05-08
383 reads
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...
By Brian Kelley
I am guilty as charged. The quote was in reference to how people argue...
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