Warning: Two Way Traffic
I saw this at the college where we held SQLSaturday #49 on the restroom door. I’m not sure what to...
2010-10-29
1,523 reads
I saw this at the college where we held SQLSaturday #49 on the restroom door. I’m not sure what to...
2010-10-29
1,523 reads
Before I get into my thoughts, go vote! Here are the options this year for the SQLRally pre-cons:
BI Sessions: http://www.sqlpass.org/sqlrally/2011/PreConsforVotingBI.aspxDBA...
2010-10-29
1,459 reads
Earlier this week I posted Bloggers, Quit Worrying About Spam, discussing what I felt was an over-focus on preventing spam...
2010-10-27
683 reads
Imagine you’re talking with a recruiter about a position that seems like a good fit and during that conversation they...
2010-10-27
596 reads
With SQLSaturday #49 we tried something I call micro-sponsors, charging $5 for a blogger to sponsor the event. It’s a...
2010-10-26
991 reads
I don’t comment as often as I should on blog posts. I say should because as a blogger I know...
2010-10-25
600 reads
Bill Graziano posted our 2011 budget today. This runs from Jul 1, 2010, through Jun 30, 2011. I hope you’ll...
2010-10-22
674 reads
So far SQLSaturday Tampa will be the first SQLSaturday of 2011, and the first one I’ll be attending in 2011...
2010-10-22
580 reads
One more from the ‘new book’ shelf at the library, All Things at Once is an auto biography of Mika...
2010-10-22
705 reads
I was just writing a thank you message to our speakers for SQLSaturday #49 and wanted to write down a...
2010-10-21
588 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