Notes on Moderating a 24 Hours of PASS Presentation
Last night (8pm Eastern) I had my first run as a 24HOP moderator and wanted to share some thoughts on...
2013-08-01
610 reads
Last night (8pm Eastern) I had my first run as a 24HOP moderator and wanted to share some thoughts on...
2013-08-01
610 reads
I like to look at things that have been in use for a while to see how they hold up....
2013-08-01
732 reads
Over the years when a performance problem comes up there is always some speculation that it’s a network issue and...
2013-07-31
1,168 reads
Must read blog: Sacha Chua. Lots of info on going solo, being productive, sketch noting.Related, if you’re trying to manage...
2013-07-30
1,122 reads
Based on a bit of luck/happenstance I’ve been able to stretch my summer vacation to two months. I had planned...
2013-07-29
1,278 reads
First time event in Cocoa Beach went really well!
Speaker dinner well attended Friday night at Florida’s SeafoodQuite a few...
2013-07-29
758 reads
PASS is accepting candidate applications for the 2013 election through August 7th, 2013. Later this year we – the PASS membership...
2013-07-29
635 reads
I’m leaving mid-morning today to drive to Cocoa with my family for a beach weekend and SQLSaturday #231. I’ll be...
2013-07-26
704 reads
I’ll try to write more about these over the next couple months, but I wanted to write down a quick...
2013-07-26
1,128 reads
I’m not terribly good at putting at least one image in every post. The images I do use are either...
2013-07-25
939 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