Football Update
Well the World Cup is now half way through, 32 games played, 32 games to go. The talk here in...
2010-06-21
492 reads
Well the World Cup is now half way through, 32 games played, 32 games to go. The talk here in...
2010-06-21
492 reads
This Thursday gone, (June 18th) I went to a hotel near Heathrow airport in London for what was titled a...
2010-06-21
804 reads
This is just a short post that uses a contrived example to demonstrate how to find duplicate records in a...
2010-06-18
1,111 reads
This day only comes around once in every four years, we've all been waiting for it for months. It's been...
2010-06-11
593 reads
You can probably tell from some of my more recent posts that I have been doing some work lately on...
2010-06-09
1,685 reads
It's that time of the month again, time for the next round of T-SQL Tuesday posts. This month is being...
2010-06-08
981 reads
I recently installed a new SQL Server 2008 instance on a brand new Windows 2008 R2. When I tried to...
2010-06-07
644 reads
Recently I have been installing a new SQL Server 2008 instance on Vmware vSphere based virtual server, the OS was...
2010-06-04
1,199 reads
I haven’t written anything technical or SQL Server related for that matter on my blog for a few of weeks....
2010-06-03
636 reads
2010-06-02
627 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