The Value of Blogging
Today we have a guest editorial from Andy Warren that talks about the value of blogging.
2010-08-13
143 reads
Today we have a guest editorial from Andy Warren that talks about the value of blogging.
2010-08-13
143 reads
Today we have a guest editorial from Andy Warren. You can get more productive, but are you being productive at the tasks that you should be working on? See what Andy Warren has to say.
2010-07-21
256 reads
A guest editorial from Andy Warren. Experience helps us do a better job, and one way you can get that is learning from experts.
2010-07-07
252 reads
A simple motivational plan goes sideways in this guest editorial from Andy Warren.
2010-06-29
198 reads
Today we have a guest editorial from Andy Warren that looks at the value of experience.
2010-06-17
212 reads
A guest editorial from Andy Warren looks at a bad database design he recently ran across.
2010-06-11
1,298 reads
A guest editorial today from Andy Warren. When someone is looking to introduce a free version of a product, what's the best way to tackle it?
2010-06-04
153 reads
Today we have a guest editorial from Andy Warren that asks about your hobbies, and would you trade your job for one of them?
2010-05-28
162 reads
How important is your job to you? Today's guest editorial from Andy Warren asks the question of the professionals out there, some of whom do great work, but don't care about their jobs.
2010-05-20
304 reads
A guest editorial from Andy Warren today looks at choices in time management, as well as work accomplished.
2010-04-08
121 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