Who's Got Your Data?
The state of data security might get worse in the future as more companies gather and share more data.
2013-07-03
143 reads
The state of data security might get worse in the future as more companies gather and share more data.
2013-07-03
143 reads
Life intrudes on work at times, and we must learn to balance the limited time we have. However we also need to remember that we work to live, not live to work.
2013-07-02
277 reads
This week Steve Jones talks performance and a few things you might want to do that can help your career and employer.
2013-07-01
336 reads
The world is bigger than you, and when you help others, you realize that. Making that change might also make you happier, and more successful, in your career.
2013-07-01
108 reads
2013-06-28
187 reads
Technical interviews don't work great, but are they dead? Is there a better way? Steve Jones comments today.
2013-06-27
355 reads
The sixth article in our series that looks at the results of the sp_Blitz™ script run against the SQLServerCentral servers.
2013-06-27
4,665 reads
Building great culture in a company is hard, and it takes work. Building great engineering culture can be more challenging, given the strong ideas and opinions people have in technology. Steve Jones has a few thoughts today.
2013-06-26
152 reads
The state of data security is getting better in the US, according to the 2013 survey from Symmatec. However we still have issues.
2013-06-25
119 reads
“The hashing alone being MD5 tells me that they really don’t care about their passwords too much, so it’s probably...
2013-06-24
928 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