Start Building Your Next Network
Take a look at your network right now and while it probably has some diversity, I bet it’s tied pretty...
2012-03-30 (first published: 2012-03-25)
1,554 reads
Take a look at your network right now and while it probably has some diversity, I bet it’s tied pretty...
2012-03-30 (first published: 2012-03-25)
1,554 reads
A few weeks ago I started clearing space for a small garden. Tedious work due to the area of the...
2012-03-16
918 reads
Something fun for Friday, this was a gift from the client I work with to lighten things up and do...
2012-03-16
889 reads
One of the things I hear a lot relating to work big and small is that it is “almost done”,...
2012-03-12
578 reads
Here’s a story from a recent meeting. We were discussing some problems and the team was talking through some options...
2012-03-12
792 reads
I was back at MagicPASS last week to do a presentation, my first time with the group at the new...
2012-03-06
561 reads
Yesterday I blogged about hosting a daily status meetings and some of the tricks I use to make it work....
2012-02-27
647 reads
For the past six months or so I’ve hosted a daily status meeting for a large project. It started out...
2012-03-02 (first published: 2012-02-26)
2,005 reads
I was chatting with a friend recently who had been in turn chatting with a colleague about first impressions. The...
2012-02-21
968 reads
I was excited to receive the email on Friday that I’d been selected to present at SQLRally #2 in Dallas...
2012-02-20
602 reads
By Steve Jones
This month we have a new host, James Serra. I’ve been trying to find...
By HeyMo0sh
As a DevOps professional, I’ve seen firsthand how cloud costs can quickly spiral out...
By Steve Jones
AI is everywhere. It’s in the news, it’s being added to every product, management...
Hi, ssms is free here. I can think of other reasons to do this...
I've written some documentation on using different Markdown types of files on GitHub. It's...
Comments posted to this topic are about the item Not Just an Upgrade
I am doing development work on a database and want to keep a backup so I can reset my database. I make some changes and want to restore over top of my changes. When I run this code, what happens?
USE Master BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO USE DNRTest GO CREATE TABLE MyTest(myid INT) GO USE master RESTORE DATABASE DNRTest FROM DISK = 'dnrtest.bak' WITH REPLACESee possible answers