SQL Server Consulting–New for 2013
Today is the first full work day for me in 2013 and I though I’d use it to write a...
2013-01-02
736 reads
Today is the first full work day for me in 2013 and I though I’d use it to write a...
2013-01-02
736 reads
It is Monday today but its no ordinary Monday. Today is New Years Eve, its the end of December and...
2012-12-31
1,793 reads
I’m not working too hard today, so this is just a short post to wish all my readers a very...
2012-12-31
1,566 reads
This is a guest post by David Postlethwaite.
I’ve been wondering how to do this for years. At SQL Bits and...
2012-12-28
1,046 reads
If you blog and call yourself a blogger then you probably have a pretty full RSS reader. Mine has been...
2012-12-28
937 reads
Microsoft today announced the latest round of SQL Server Cumulative Updates
SQL Server 2012 CU 5 – You can get more information...
2012-12-28
825 reads
This is a very short post on Christmas Eve to wish all my readers a very Merry Christmas!
I’m going to...
2012-12-24
796 reads
As we approach a new year many of you will be looking at your SQL Server Training needs for 2013....
2012-12-19
767 reads
As we approach the end of 2012 – The release year for SQL Server 2012 many of you as we approach...
2012-12-17
954 reads
For those that read my blog regularly you will know that I over the last couple of years I have...
2012-12-13
1,030 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