Dog Food
Should you dog food your own software? Steve Jones thinks this is a good idea if it works for your particular product.
2012-10-03 (first published: 2007-09-28)
640 reads
Should you dog food your own software? Steve Jones thinks this is a good idea if it works for your particular product.
2012-10-03 (first published: 2007-09-28)
640 reads
There's still hope for all you DBAs out there looking for a telecommuting job that allows you to work in your pajamas. Someone sent me this case study about remote DBAs and I decided to pass it along. It's a one page PDF, and it's a fluff piece to some extent for Bluewolf, a company that has outsourced IT staffing, but has a section on remote DBA work as well
2012-10-02 (first published: 2007-09-19)
1,371 reads
Challenge yourself to find new tools and use them in your work. That's today's message from Steve Jones. (This editorial was originally published on Aug 5, 2007. It is being re-run as Steve is away on the SQL in the City US 2012 tour.)
2012-10-01
305 reads
I told people in New York at SQL in the City that I’d post some resources on the blog from...
2012-10-01
1,283 reads
That’s where we were on Friday. 780 Third Avenue, in the middle of Manhattan. The start of our 2012 US...
2012-10-01
1,195 reads
I’ve been working on a new presentation for full text search and brushing up on some of my T-SQL operators....
2012-09-27
4,824 reads
“New York City…center of the universe..” – Rent
I’m off to New York this morning for the start of the 2012 SQL...
2012-09-27
1,694 reads
Companies may look to outsource security in order to take advantage of experts' skills at a lower price. What will that mean for data professionals?
2012-09-27
113 reads
Today Steve Jones talks about pair programming and when it might make sense for data professionals.
2012-09-26
187 reads
When working on a project, you have to make trade-offs. Unfortunately, some managers don't realize this. Steve Jones says we need to help them understand that doing things the right way, and working with trade-offs, makes for better systems.
2012-09-25
137 reads
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...
By Steve Jones
Learn how to tie a bowline knot. Practice in the dark. With one hand....
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