2011 PASS Summit–Report #3
Friday morning keynote. Quick intro from Rick Heiges. Buck Woody and Rob Farley singing, quite the sight for Friday morning....
2011-10-14
618 reads
Friday morning keynote. Quick intro from Rick Heiges. Buck Woody and Rob Farley singing, quite the sight for Friday morning....
2011-10-14
618 reads
Starting the keynote on Wednesday, Bill Graziano talking about Kilt Day, quite a few of the bloggers wearing kilts (no,...
2011-10-13
600 reads
I’m writing this while I listen to the keynote at the PASS Summit, thinking about some of the things I’ve...
2011-10-13
650 reads
Wednesday morning. I’m at the blogger table waiting on the opening day keynote. LOTS of people here. Summit attendance is...
2011-10-12
696 reads
The 2012 South Florida Code Camp is scheduled for February 11, 2012 at Nova University in Ft Lauderdale, and the...
2011-10-10
658 reads
The GiveCamp in Orlando needs volunteers to convert 25 reports from Crystal to Reporting Services. Food is provided, just need...
2011-10-06
543 reads
I mentioned this in my SQLFun post last night and wanted to call out separately here, I typically do a...
2011-10-06
792 reads
The annual PASS Summit is definitely about technology and learning, but if that’s all you get out of it you’re...
2011-10-06
907 reads
I’m running through my mental (and some written) pre-travel checklist, tickets, clothes, a few odds and ends, trying to be...
2011-10-05
630 reads
I saw this post about Leonard Nimoy doing his final convention appearance this week. He’s 80, I would guess doesn’t...
2011-10-05
558 reads
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...
By Vinay Thakur
RAG — Retrieval Augmented Generation. we have covered so far — embeddings, vectors, vector...
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