Upgrading your Beta/CTP Software
This is one of the reasons that I don’t like to put CTP software (or Beta software) onto machines that...
2010-04-26
1,159 reads
This is one of the reasons that I don’t like to put CTP software (or Beta software) onto machines that...
2010-04-26
1,159 reads
I installed a new VM with SQL Server in it, along with Win 7 and Reporting Services. The plan was...
2010-04-23
798 reads
I have been a fan of 37 Signals for some time, and I read their blog regularly. I think they...
2010-04-23
789 reads
For a Friday poll this week, Steve Jones is looking at those spring cleaning or annual maintenance activities that you might perform on your systems.
2010-04-23
154 reads
I saw this article on the improvements from E-ink that are coming. There are two videos, one of a better...
2010-04-22
714 reads
I was listening to the announcement of SQL Server 2008 R2 yesterday on a call from Microsoft. It was released...
2010-04-22
731 reads
My Windows Home Server died a month ago, just as I was getting ready to leave the country. I didn’t...
2010-04-22
707 reads
Today Steve Jones talks about the challenges of deciding what to include in that next software release. Something that likely isn't as easy as we might think it should be.
2010-04-22
91 reads
In the past, when I’ve set up log shipping, it was primarily as a DR device, designed to get copies...
2010-04-21
3,198 reads
Speed is critical. That's the theme for today's editorial, using the NYSE as an example.
2010-04-21
136 reads
By HeyMo0sh
In my experience, FinOps success has never been just about tools or dashboards. It...
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...
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