Stunned
The comment from one person has Steve Jones stunned today. He discusses the value of diversity and what we can do in the community.
2013-08-28
1,101 reads
The comment from one person has Steve Jones stunned today. He discusses the value of diversity and what we can do in the community.
2013-08-28
1,101 reads
Can a honeypot provide you with more security? It's an interesting idea from Steve Jones today that might help you detect, and respond, to security events.
2013-08-27
142 reads
The physical security of our systems might be a bigger problem in the future as more and more hackers are finding ways into secure areas.
2013-08-26
158 reads
Steve Ballmer is retiring in the next year and Microsoft needs to find a new CEO. Steve Jones has a few thoughts.
2013-08-26
111 reads
I was looking over my travel calendar this fall, and I’m somewhat amazed at the variety of events that are...
2013-08-23
1,137 reads
I ordered my first new new phone this year. I’ve never purchased a new, unreleased model of a cell phone...
2013-08-23 (first published: 2013-08-16)
2,560 reads
Information is free, but data certainly has a cost. Especially as there are real costs to storing and managing large volumes of bits and bytes.
2013-08-22
125 reads
When developing your code, should you use views? There are reasons why you might choose to do so, or not do so, however Steve Jones thinks you should consider abstracting your systems.
2013-08-21
162 reads
One of the keys to being a successful technologist is being able to search for information. Google has a lot...
2013-08-21
974 reads
If you’ve got a Windows Phone, or any of the Windows devices that support podcasts, the Voice of the DBA...
2013-08-21
1,315 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