8 Weeks In
I’m about eight weeks into my current project and while I’m certain I don’t know it all, I’m finally at...
2011-09-13
537 reads
I’m about eight weeks into my current project and while I’m certain I don’t know it all, I’m finally at...
2011-09-13
537 reads
There are few games that don’t have some kind of strategy, from tic-tac-toe on up. Sometimes we take the time...
2011-09-12
1,155 reads
I was just checking the event calendar and saw that my Building a Professional Development Plan presentation is on Wednesday...
2011-09-12
766 reads
Recently former PASS President Kevin Kline posted his thoughts on the current slate of officers. I encourage you to read...
2011-09-07
1,019 reads
Coming up on September 24th we’ll be doing our fifthannualSQLSaturday here in Orlando. We’re still at Seminole State College but...
2011-09-06
673 reads
One of the things I like to do is take some time on decisions that matter to me. That’s a...
2011-09-02
1,035 reads
Parking places, that’s the topic of my recent editorial on SSC. A simple topic, but one that most of us...
2011-09-02
844 reads
Here’s the link to my editorial on SSC last week. I was pleasantly surprised by the discussion, and was interested...
2011-08-30
1,720 reads
In a departure from my usual plan, this year I drove up to Jacksonville mid-morning in time to have a...
2011-08-29
828 reads
A short update today, following up on an email to the Board from incoming VP of Finance Douglas McDowell who...
2011-08-25
791 reads
By DataOnWheels
The T-SQL Tuesday topic this month comes James Serra. What career risks have you...
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...
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