How Many Have I Read?
I saw this on Facebook, and while I’m not sure of the list, I reproduced it here. I think that...
2010-12-03
538 reads
I saw this on Facebook, and while I’m not sure of the list, I reproduced it here. I think that...
2010-12-03
538 reads
I saw a very interesting blog at 37 Signals on the quote “the things you do more often are the...
2010-12-03
545 reads
I saw this posted on Twitter, yet another reason to have a variety of people you follow. Some very interesting...
2010-12-02
559 reads
Do we need new technologies to handle the large scales of complex data analysis? Steve Jones thinks SQL Server can handle the load.
2010-12-02
112 reads
Today Steve Jones talks about the reasons why you might change jobs, and the fact that you aren't alone. However be careful about changing jobs, and make an attempt to stay if you can.
2010-12-01
278 reads
I updated the iPad tonight to iOS 4.2. I had no particular reason to upgrade, but I saw a few...
2010-12-01
534 reads
I guess I might need to go back to RAID. From the Windows Team Blog, there is a decision to...
2010-12-01
440 reads
Worthy of an editorial, but this is a pretty good use-case for why SQL Azure might make sense. This is...
2010-12-01
400 reads
When it rains it pours.
Last week my Nano died. It won’t hold a charge, or at least it won’t...
2010-12-01
445 reads
Performance is always one of the most important things a DBA can learn to deal with. It's also one of the more nebulous arts to learn. Today Steve Jones shares some thoughts on how we might better help people learn.
2010-11-30
386 reads
By HeyMo0sh
One of the biggest challenges I’ve faced in cloud operations is maintaining clear visibility...
By Steve Jones
I come to Heathrow often. Today is likely somewhere close to 60 trips to...
By Brian Kelley
If your organization is spending money, then meaningful results are a must. Pen testing...
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