Spousal Surcharges
Today we have a guest editorial from Andy Warren that examines the costs of family at work.
2016-03-04
172 reads
Today we have a guest editorial from Andy Warren that examines the costs of family at work.
2016-03-04
172 reads
Today we have a guest editorial from Andy Warren that talks about SQL Server the no one's favorite topic: licensing.
2016-01-21
170 reads
Today we have a guest editorial from Andy Warren. We still have many applications runnning under sysadmin accounts, often "sa". Why do people do this? Andy has a few thoughts on the subject.
2015-12-21 (first published: 2011-05-04)
527 reads
Today we have a guest editorial from Andy Warren that looks at those that run software early in its lifecycle.
2015-11-20
92 reads
Today we have a guest editorial from Andy Warren. Andy talks about the things that help us out when we forget to handle some aspect of server administration. These safety nets can be handy, but should they be there? Should we have more of them? Join the discussion.
2015-11-05 (first published: 2011-06-09)
255 reads
Today we have a guest editorial from Andy Warren that looks at the way some companies look to hire new workers.
2015-10-09
192 reads
It can be a challenge to keep up with the rapidly evolving SQL Server platform. Andy Warren has a few ideas today.
2015-07-31
377 reads
For this Friday, Andy Warren asks if you would pay to change your wardrobe for work.
2015-07-17
238 reads
Andy Warren wonders if our industry is moving to a new era today.
2015-07-09
250 reads
Today we have a guest editorial from Andy Warren that looks at side projects and how you might actually grow our careers.
2015-06-18
173 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