Labor Day 2011
It's a holiday in the US today and Steve Jones provides a little entertainment for those people still at work.
2011-09-05
74 reads
It's a holiday in the US today and Steve Jones provides a little entertainment for those people still at work.
2011-09-05
74 reads
This series of blog posts are related to my presentation, The Top Ten Skills You Need, which is scheduled for...
2011-09-05
5,537 reads
This week Steve Jones asks you what you think will make up the majority of your future databases? Will it be numerical data or will some other type come to dominate?
2011-09-02
139 reads
I saw a post recently where someone was asking about the restore sequence for a series of backups. The scenario...
2011-09-01
818 reads
Amazon has built a cloud just for the US government. Will we see more specialized clouds in the future that might let us move some of our data to the cloud?
2011-08-31
128 reads
Inspired by a quote from Benjamin Franklin, Steve Jones talks about investing in your career.
2011-08-30
263 reads
I wrote about the basics of computed columns and also using CASE in a computed column recently, but there’s a...
2011-08-30
3,410 reads
With the resignation of Steve Jobs from Apple this week, Steve Jones looks back at his memories of the tech icon.
2011-08-29
109 reads
I’d never been to Oklahoma City, and when Kristin Ferrier asked me to come to SQL Saturday #90 and do...
2011-08-29
919 reads
This series of blog posts are related to my presentation, The Top Ten Skills You Need, which is scheduled for...
2011-08-29
3,457 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