Develop a High Availability/Disaster Recovery Strategy
Develop a High Availability/Disaster Recovery Strategy – Protecting your company’s most valuable asset and keeping that asset available is a very...
2012-11-16
1,081 reads
Develop a High Availability/Disaster Recovery Strategy – Protecting your company’s most valuable asset and keeping that asset available is a very...
2012-11-16
1,081 reads
SQL Server Version Upgrade - You have SQL Server running nicely with no issues or problems. The trouble is its SQL...
2012-11-15
1,179 reads
SQL Server Virtualisation - Lots of companies and organisations are adopting a virtualisation first approach to the installation of new servers...
2012-11-14
775 reads
Configuring Hyper-V on a Windows Server 2012 is really simple and straight forward. Its a very similar process on Windows...
2012-11-13 (first published: 2012-11-09)
2,819 reads
Here at gethynellis.com we offer a range of consulting services to help you manage and maintain your SQL Server environment,...
2012-11-13
585 reads
Here at gethynellis.com we offer a range of consulting services to help you manage and maintain your SQL Server environment,...
2012-11-12
750 reads
Occasionally I come across offers and deals that may be of interest to some of my readers. When I come...
2012-11-11
751 reads
When working with new technology, if you are like me you might like to setup virtual machines to learn the...
2012-11-08
1,355 reads
This post is very much off topic so apologies if you were expecting a technology related post.
Tonight a darts exhibition...
2012-11-08
688 reads
I have been exploring Windows 2012 over the past week or so. Things look a little different to previous versions...
2012-11-07
2,325 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