Good Ideas Take Time or How to Brainstorm - Part 2
In Good Ideas Take Time or How to Brainstorm - Part 1 I wrote about how I come up with ideas...
2008-10-23
1,602 reads
In Good Ideas Take Time or How to Brainstorm - Part 1 I wrote about how I come up with ideas...
2008-10-23
1,602 reads
Occasionally I'm asked how I come up with ideas for my blog to maintain the just about one a day...
2008-10-22
686 reads
Obviously, right?
I managed to knock my Blackberry Curve off the bar and into a bowl of water in the sink....
2008-10-21
619 reads
Recently I posted about Managing My Todo List and I had a question via email about what notepad I was...
2008-10-20
799 reads
I posted Do You Understand Microsoft Licenses about a week ago, and today happened to run across a note about...
2008-10-20
535 reads
I suspect final preparations will stretch all the way through next Saturday morning, but at this point we've done most...
2008-10-19
499 reads
I was teaching a private class recently that had both DBA's and network types in the room, one of the...
2008-10-16
821 reads
I've just recently acquired a new laptop and my resolution is to install no software on it that I'm not...
2008-10-16
674 reads
Back in May I wrote about signing up for FlyClear as a way to save time travelling and in doing so,...
2008-10-14
520 reads
Thought I'd post these notes based on feedback from the event organizers, wasn't able to attend myself due to scheduling...
2008-10-13
539 reads
This T-SQL Tuesday is hosted by the one and only James Serra – literally...
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...
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