Video: Bringing Together Databases, Virtualization and Storage
Bala Narasimhan, Vice President of Products from PernixData, and I recently sat down and discussed the convergence of infrastructure, SQL Server,...
2015-05-07
372 reads
Bala Narasimhan, Vice President of Products from PernixData, and I recently sat down and discussed the convergence of infrastructure, SQL Server,...
2015-05-07
372 reads
My recent post on using the new DiskSpd utility to help you benchmark your storage is a great primer on how...
2015-05-14 (first published: 2015-05-05)
7,651 reads
This past week I had the pleasure of being part of the second SQL Server virtualization workshop held by VMware....
2015-04-30
1,161 reads
I have two exciting SQL Saturday preconference training sessions coming up in the month of May!
The first is my Virtualization...
2015-04-27
392 reads
If you experience a WSFC failover during a VMware vMotion / Hyper-V Live Migration with your virtualized SQL Servers when using Availability...
2015-04-23
500 reads
I am very happy to announce that I will be presenting two sessions at this year’s IT/Dev Connections conference in Las Vegas!...
2015-04-21
408 reads
I’m proud to announce my company, Heraflux Technologies, is looking to fill the position for Vice President of Business Development....
2015-04-17
453 reads
Recently, my friend Mike Fal ( b | t ) released a PowerShell script that can sample the counter inside SQL Server that...
2015-04-15
1,166 reads
Today I presented a new session on the various paths to becoming a consultant to the PASSProfessional Development Virtual Chapter....
2015-04-09
576 reads
Today at 11am Central time I will be presenting a new session entitled “Journey to Being a Consultant” for the...
2015-04-08
527 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