T-SQL Tuesday #73 Invitation – Naughty or Nice?
Hello Dear Reader! This is the first Tuesday of the month and you know what that means. It’s time to announce the T-SQL Tuesday Topic of the month! This...
2015-12-01
7 reads
Hello Dear Reader! This is the first Tuesday of the month and you know what that means. It’s time to announce the T-SQL Tuesday Topic of the month! This...
2015-12-01
7 reads
Hello Dear Reader! We are coming up upon the 9th SQL Saturday for Orlando. Orlando is where SQL Saturday began,...
2015-06-25
854 reads
Hello Dear Reader! We are coming up upon the 9th SQL Saturday for Orlando. Orlando is where SQL Saturday began, and the home to some pretty amazing speakers. We,...
2015-06-25
6 reads
I'm sitting on a plane. I'm in an exit row, still a big guy in a little seat. I go...
2015-01-22
789 reads
Hello Dear Reader! I’ve been the Data Platform Management Lead at Pragmatic Works for almost two years now. It’s been...
2014-11-26
1,252 reads
Hello Dear Reader! It's that time of the year again, time for the PASS Summit and the streaming Keynote. Here...
2014-11-05
877 reads
https://www.flickr.com/photos/socal_jim/2070088596/Hello Dear Reader! It’s that time of year again. The leaves are turning, temperatures are changing, and Halloween is once...
2014-10-31
1,180 reads
Hello Dear Reader! Two weeks ago I was very honored to be named a Microsoft SQL Server MVP. Since then...
2014-10-15
811 reads
Hello Dear Reader! The PASS Board of Director elections are upon us again. We have 3 spots open and 4...
2014-09-24
603 reads
Hello Dear Reader! In June this year I was recognized by PASS as with an Outstanding Volunteer Award. In an...
2014-09-15
656 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