Create a portable virtual machine with OVF or OVA
Today a great client asked me how to export a VM to an OVF or OVA so he could transport...
2012-10-04
1,505 reads
Today a great client asked me how to export a VM to an OVF or OVA so he could transport...
2012-10-04
1,505 reads
Just before PASS Summit in November, House of Brick and I will be holding a free boot camp on Virtualizing...
2012-10-01
712 reads
The Omaha SSUG’s sister group, the Lincoln SSUG, is hosting a SQL Saturday this coming Saturday, October 6th, at Avery...
2012-10-01
695 reads
I sat down this afternoon after being out of town for week to work on a few things in my...
2012-09-30
1,532 reads
I read yesterday that VMware has updated the “Microsoft Clustering on VMware vSphere: Guidelines for Supported Configurations” KB article linked...
2012-09-27
3,082 reads
Jeff Walker (blog), a great coworker of mine at House of Brick Technologies, passed the VMware Certified Professional for vSphere...
2012-09-23
641 reads
VMware, why won’t you allow special characters in your root password?
Tweet
2012-09-22
590 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