I'm Outta Here
Take care of the site, behave, and respect each other.
I'm off for a week in St. Martin, a belated honeymoon...
2010-01-18
732 reads
Take care of the site, behave, and respect each other.
I'm off for a week in St. Martin, a belated honeymoon...
2010-01-18
732 reads
The PASS Summit has been held in Seattle for a number of years, but recently people have asked to move it somewhere else. Steve Jones talks a little about the issue.
2010-01-18
93 reads
So many people wrote posts at the end of 2009 analyzing their goals and what they achieved. I did the...
2010-01-18
728 reads
It can be nerve-wracking for a DBA when support for their server ends. This week support for SQL Server 2005 Service Pack 2 ended and Steve Jones talks about your options.
2010-01-18
427 reads
I was tagged
by SQL Rockstar, aka Tom LaRock, after this
thread was started by Paul Randal-not-Paul-Tripp (I wonder if...
2010-01-18
2,056 reads
I read this book as a kid, or at least I thought I did. After grabbing this from Amazon (free...
2010-01-17
831 reads
I woke up this morning to find Tia reading an actual paper books. That’s become a rarity for both of...
2010-01-17
716 reads
I woke up this morning to find Tia reading an actual paper books. That’s become a rarity for both of...
2010-01-17
679 reads
My boss gave me an assignment, asking for 200 words on the history of SQLServerCentral. This is what I came...
2010-01-15
1,465 reads
SQL Server is an expensive product to license. Or is it? Steve Jones asks today if you feel it's expensive, and what price might you want to pay.
2010-01-15
444 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