Tiny Homes
Over the course of my life I’ve lived in a few different places; small home, apartment, pup tent, large tent,...
2010-08-06
534 reads
Over the course of my life I’ve lived in a few different places; small home, apartment, pup tent, large tent,...
2010-08-06
534 reads
According to all of their public pronouncements and the flurry of recent activity, Microsoft seems extremely serious about Windows Azure...
2010-08-06
997 reads
Cross-posted from The Goal Keeping DBA blog.
I'm making an earnest effort to work through Getting Things Done in an effort...
2010-08-05
749 reads
I noticed the scores for the first part of the PASS nomination process were posted recently. These were the aggregate...
2010-08-05
415 reads
Topic: Creating a SQL Server Utility Environment
Can SQL Server be offered as a service (SQLaaS)? Can SQL Server be treated like...
2010-08-05
773 reads
Being a good mentor is hard, perhaps harder than being a parent, because with children it’s fair to share with...
2010-08-05
388 reads
Today at 12:30 EST I will be presenting for SQL Lunch on the topic of Analysis Services Security. Make sure to be...
2010-08-05
692 reads
If you are looking for a rewarding way to spend next Saturday, August 14th 2010, do yourself a favour and...
2010-08-05
700 reads
Continuing on with my Thursday series of SQL Saturday posts, this time I wanted to talk about keynotes.
I’ve been to...
2010-08-05
428 reads
Wow! Thanks to everyone who came to my SQL Server Locking & Blocking session at devLINK this morning! I’m completely humbled...
2010-08-05
376 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