Outsourcing Jobs
This week Steve Jones looks at some of the jobs being outsourced and how that might affect data professionals.
2012-08-27
183 reads
This week Steve Jones looks at some of the jobs being outsourced and how that might affect data professionals.
2012-08-27
183 reads
Intuit manages ten million lines of code in a single codebase and does a great job of it. Read a little about what they do.
2012-08-27
214 reads
I love San Francisco. It was one of the cities that I thought I might live in someday. My kids...
2012-08-27
1,081 reads
This Friday Steve Jones wants to know how you spend your time. Do you get to do a lot of new development or do you end up fixing, tuning, and improving old code. Let us know.
2012-08-24
118 reads
The last time I was in Austin was last year, for a weekend trip with my wife to see Stevie...
2012-08-23
1,479 reads
It's time to vote for the Exceptional DBA awards, and Steve Jones is asking for your opinion. Take a moment and recognize one of your peers as the best DBA in 2012.
2012-08-23
151 reads
This is nice, a year long safety pilot from the University of Michigan. Quite extensive, using 3,000 cars to gather...
2012-08-23
800 reads
The hack on a Gizmodo writer using Amazon and Apple customer service security holes was shocking. Steve Jones notes that while security is important, backups are even more important.
2012-08-22
174 reads
I just booked my tickets for New York City. I’m coming into the city on Sept 27, at 2pm, with...
2012-08-22 (first published: 2012-08-20)
1,586 reads
Big Data is in the news and there is a lot of job growth. Steve Jones lists a few industries and areas where you might find one.
2012-08-21
306 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