Attending the Summit? Learn Networking With Don Gabor!
My friend, author, and networking guru Don Gabor is back at the Summit for the third year in a row,...
2011-10-04
858 reads
My friend, author, and networking guru Don Gabor is back at the Summit for the third year in a row,...
2011-10-04
858 reads
This is something I saw recently, a large chalkboard – like the kind they used to have in schools – on a...
2011-09-29
706 reads
Today we have a guest editorial from Andy Warren. Andy talks today about he various items that collect around your work space. Are they useful? should you be cleaning things up? What does this say about you?
2011-09-29
117 reads
I’m writing this on Sunday afternoon after the event, thinking about the event and what I want to share with...
2011-09-26
627 reads
It’s 7am on Friday and I can’t wait for the day to end, head home to change and then go...
2011-09-23
604 reads
Ran across this in my reading about the Ten Thousand Year Clock, a project funded by Jeff Bezos. Awesome dream....
2011-09-21
707 reads
I have a tendency to carry more than I need, the equivalent of the Batman Utility Belt. I just went...
2011-09-21
850 reads
Last year it was the Tina Turner impersonator. Was it last year or the year before where the servers spun...
2011-09-21
646 reads
I wanted to start with a follow up to my last post about the officer elections and the concerns about...
2011-09-20
706 reads
Someone I worked with recently on the server side of the business had that to say about SQL Server compared...
2011-09-19
610 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