PASS Virtualization Virtual Chapter Open Q&A – 1/13
Next Wednesday, January 13th, at 1pm Eastern the PASSVirtualization Virtual Chapter will be holding an open questions and answers session on...
2016-01-05
440 reads
Next Wednesday, January 13th, at 1pm Eastern the PASSVirtualization Virtual Chapter will be holding an open questions and answers session on...
2016-01-05
440 reads
Poor storage performance continues to be the largest pain point with enterprise Database Administrators in today’s virtual world. However, it...
2015-12-17
1,077 reads
In the West, the holiday season summons different memories and plans for different people. The thought of gorging on a...
2015-12-25 (first published: 2015-12-15)
1,019 reads
Want to get out of the winter blues and into some warmer weather for some deep SQL Server training? Join...
2015-12-07
687 reads
On Tuesday, December 15th, Bala Narasimhan and I are presenting a webinar where we will walk through real-world examples that...
2015-12-02
449 reads
Today I had a need to manually trigger and sustain a Blue Screen of Death (BSOD) inside a Windows Server...
2015-11-30
833 reads
Earlier this week I received a great question from a friend, and read something like this.
Hi David,I usually recommend people...
2015-11-11
402 reads
Last week’s PASS Summit conference in Seattle, WA was incredible (as always). It’s my favorite tech event of the year,...
2015-11-09
455 reads
I recently recorded an interview with PernixData where he discusses some of the largest challenges with virtualized databases, and talks about...
2015-10-30 (first published: 2015-10-21)
982 reads
Join PernixData and me tomorrow at 1PM Pacific for a webinar discussing an exciting technology from PernixData!
In-memory computing is gaining...
2015-10-19
306 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