Always more to do
My current "to do" list, which is only partially written down and organized. Putting it all one one list is...
2008-10-07
385 reads
My current "to do" list, which is only partially written down and organized. Putting it all one one list is...
2008-10-07
385 reads
Why did I write this? I got challenged by Andy Warren
to write a bit about why I wrote something. I...
2008-10-07
364 reads
2008-10-07
2,000 reads
Today Steve Jones talks about starting your own business and should you do it with online tools.
2008-10-07
71 reads
Today Steve Jones talks about starting your own business and should you do it with online tools.
2008-10-07
88 reads
Today Steve Jones talks about starting your own business and should you do it with online tools.
2008-10-07
65 reads
I spend the weekend in Indianapolis at the IndyTechFest 2008 and had a great time. It's a smaller, regional conference...
2008-10-06
313 reads
We try to keep control of the data in our databases, but as the world becomes more connected, it's harder to ensure integrity. Steve Jones talks about some of the issues in this new Web 2.0 world.
2008-10-06
130 reads
Why did I write this? I got challenged by Andy Warren
to write a bit about why I wrote something. I...
2008-10-06
507 reads
Steve Jones looks back at some of the news from the week ending Oct 6, 2008.
2008-10-06
31 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