An Open Letter To Amazon
I sent this to their customer service, but it highlights a problem with the Kindle process.
I have a Kindle, and...
2009-05-14
406 reads
I sent this to their customer service, but it highlights a problem with the Kindle process.
I have a Kindle, and...
2009-05-14
406 reads
Or at least I’m getting ready to take the plunge into using Hyper-V. In my machine dilemma, I decided to...
2009-05-14
1,659 reads
As we develop new applications and our computers gain new capabilities, what rights do our data include? Steve Jones explores a controversy with the Amazon Kindle.
2009-05-14
81 reads
Feeling his age a bit, Steve Jones asks you about yours in this Friday's poll. Where do you think you are in your career as a technologist?
2009-05-14
347 reads
Feeling his age a bit, Steve Jones asks you about yours in this Friday's poll. Where do you think you are in your career as a technologist?
2009-05-14
181 reads
Feeling his age a bit, Steve Jones asks you about yours in this Friday's poll. Where do you think you are in your career as a technologist?
2009-05-14
466 reads
Not MVP logo items, as I’m not sure if I really want to wear those. I was somewhat uncomfortable last...
2009-05-13
955 reads
There are many ways to invest in yourself and Steve Jones reminds us of one in today's editorial.
2009-05-13
327 reads
A better explanation from the SQLCAT team in this blog entry. I’d still like to see more, but this makes...
2009-05-13
657 reads
I was watching the TechEd 2009 keynote the other day and there was a lot of time spent on Windows...
2009-05-13
431 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