SQLRally 2012-Closing Thoughts
It was interesting to watch an event that started 17 months ago with Dallas, Nashville, and Denver submitting applications to...
2012-05-12
1,156 reads
It was interesting to watch an event that started 17 months ago with Dallas, Nashville, and Denver submitting applications to...
2012-05-12
1,156 reads
Started the day early, heading to the Convention Center to be at Starbucks at 6:45 for the networking event I...
2012-05-12
951 reads
Arrived at the convention center about 7:30, managed to arrive at the right end of the convention center and walked...
2012-05-11
710 reads
Ran across this recently, YourLogicalFallacyIs.com is a site that lists all the ways you can apply logic badly, and they’ve...
2012-05-10
863 reads
Had a nice lunch at On The Border at Orlando International before my flight, used that time to finish some...
2012-05-10
629 reads
It’s been just over two months since I started my small home garden. The initial work to clear the area...
2012-05-08
653 reads
It’s been not quite two years since I moved from a Blackberry to a Droid X. The X turned out...
2012-05-07
535 reads
The first conference I went to back in 1999 I attended every session, the bonus sessions, the breakfasts, everything. It...
2012-05-07
941 reads
I blogged a while back about not having the ability to easily disable purchasing on the Kindle. Until recently we...
2012-05-05
479 reads
We’re about to start our second experiment over at The Mentoring Experiment and we need mentors. Last time we picked...
2012-05-04 (first published: 2012-04-24)
1,847 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