SQL Server Disaster Recovery
I was reading a blog post by Steve Jones on Monday and I started to write a comment on his...
2012-12-11
1,094 reads
I was reading a blog post by Steve Jones on Monday and I started to write a comment on his...
2012-12-11
1,094 reads
Last week I was delivering a SQL Server Training course for learning tree. The course was 2109 SQL Server Virtualization...
2012-12-10
1,052 reads
I’m going to continue with my series of posts on analysing how well my SQL Server Consulting blog has done...
2012-12-09
801 reads
Unbelievably it is December already and 2013 is fast approaching. With the Christmas break fast approaching now is the time...
2012-12-03
1,081 reads
This post is little experiment I’m trying out this weekend. The SQL Server Consulting blog has been up and running...
2012-12-01
881 reads
As regular readers of my blog will now as part of role as a SQL Server consultant and SQL Server...
2012-11-29
2,115 reads
Back in the old days before this blog when I was publishing a website instead that has long been consigned...
2012-11-22
881 reads
This weeks blog posts have been focusing on books that I have read, like and recommend for learning SQL Server...
2012-11-21
957 reads
Carrying on with book week and answering the question I’m often asked about what books I;d recommend to learn about...
2012-11-20
944 reads
I’m often asked about what books I would recommend for learning more about SQL Server 2008 and I always respond...
2012-11-19
1,035 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