SQL Server 2012 Skills Upgrade–November
There are still some places available for Learning Tree’s SQL Server 2012 Skills Upgrade course this November. The class is...
2012-11-07
998 reads
There are still some places available for Learning Tree’s SQL Server 2012 Skills Upgrade course this November. The class is...
2012-11-07
998 reads
Over the past few weeks I have been doing some work with Windows Server 2012 and learned a few little...
2012-11-06
589 reads
I’m involved with with a new venture called sqlstreet.co.uk. SQL Street is the place to shop for database experts.
Here’s a...
2012-11-05
732 reads
Amazon has released the latest version of it Kindle – the Kindle Fire HD.
It seems amazon are moving away from a...
2012-10-29
624 reads
Come and join me live in Stockholm Sweden early in 2012 where I will be presenting Learning Tree’s2109 SQL Server...
2012-10-22
509 reads
This December (5th - 7th) I will be presenting SQL server Consolidation and Virtualization: Hands-On for Learning Tree in New York....
2012-10-19
929 reads
This December I will be presenting An Introduction to SQL Server 2008 Hand-On for Learning Tree at the LEC in...
2012-10-18
434 reads
There are still some seats left on the SQL Server 2008 A Comprehensive Hands-On Introduction that I will be presenting...
2012-10-15
724 reads
There are still some seats left on the SQL Server 2008 A Comprehensive Hands-On Introduction that I will be presenting...
2012-10-12
568 reads
Come and join me live in London this coming December where I will be presenting Learning Tree’s2109 SQL Server Virtualization...
2012-10-08
831 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