SQL Server 2012 Books
SQL Server 2012 was released to manufacturing last week, you can download it from MSDN if you have subscription or...
2012-03-13
2,183 reads
SQL Server 2012 was released to manufacturing last week, you can download it from MSDN if you have subscription or...
2012-03-13
2,183 reads
As you probably know by now SQL Server 2012 was launched last week, Microsoft had an online launch event that...
2012-03-12
3,482 reads
I asked a few questions on twitter this morning after a friend of mine said they were have problems downloading...
2012-03-06
776 reads
So it looks like today is the day.
SQL Server 2012 has been RTM’d today.
General Release 1st April 2012
http://www.microsoft.com/Presspass/press/2012/mar12/03-06SQLServer12PR.mspx
2012-03-06
2,032 reads
I have had a few people ask me recently about books that I would recommend to help further develop your...
2012-03-05
733 reads
So this is just a short post to test how well I can type and use Blogsy. If it works...
2012-02-13
687 reads
Following on from the first post in my blogging series Building a Blog I’m just going to take a quick...
2012-01-30
766 reads
I took an interest in building a blog/website several years ago when I first started my company and working for...
2012-01-27
737 reads
This is just a short post for Friday. I have been working a fair amount with SSAS and the rest...
2012-01-20
5,557 reads
My good friend Justin Hostettler-Davies (JHD) aka @JHDAVIES , the same JHD who recently scaled Kilimanjaro, is on the fund raising...
2012-01-16
796 reads
By HeyMo0sh
As a DevOps person, I know that to make FinOps successful, you need more...
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...
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