VMworld EMEA SQL Server Sessions
This trip to Barcelona for the next VMworld EMEA conference next week will be my second trip to this conference...
2017-09-05
381 reads
This trip to Barcelona for the next VMworld EMEA conference next week will be my second trip to this conference...
2017-09-05
381 reads
This trip to Barcelona for the next VMworld EMEA conference next week will be my second trip to this conference...
2017-09-05
150 reads
Just a reminder – our SQL Servers sessions for this year’s VMworld 2017 conference in Las Vegas are starting to fill...
2017-08-23
437 reads
Just a reminder – our SQL Servers sessions for this year’s VMworld 2017 conference in Las Vegas are starting to fill...
2017-08-23
131 reads
System administrators of the world, if a VM experiences a problem that takes down business-critical application, your job is to...
2017-08-21
300 reads
System administrators of the world, if a VM experiences a problem that takes down business-critical application, your job is to...
2017-08-21
117 reads
My company, Heraflux Technologies, is proud to announce a new ebook as part of our joint partnership with Pure Storage!...
2017-08-21
236 reads
One of the challenges with any SQL Server business continuity strategy is backing up your databases and logs on a...
2017-08-08
564 reads
In the last blog post, we added additional drives to the SQL Server machine so that we can scale out...
2017-08-16 (first published: 2017-07-27)
1,450 reads
One of the biggest differences with managing SQL Server Linux is with drive presentation. With Windows, we’d all scream if...
2017-08-09 (first published: 2017-07-24)
1,649 reads
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...
By Steve Jones
Learn how to tie a bowline knot. Practice in the dark. With one hand....
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