Now that everyone else said it – I’m an MVP!
They say to save the best for last and while I’m not so sure about that I was truly honored...
2011-01-29
479 reads
They say to save the best for last and while I’m not so sure about that I was truly honored...
2011-01-29
479 reads
SQL Stadium will be crowded with anticipation very soon in Tampa. Come watch as Adam Jorgensen takes on a challenger...
2010-12-20
872 reads
This season, as we continue to grow and partner with some of the best of the best in the industry....
2010-12-15
509 reads
Have you been trying to figure out how to take your career in Microsoft BI, SharePoint and SQL Server to...
2010-12-10
499 reads
Have you ever been “dragged” to a long weekend afternoon at a craft fair? Did it look something like this?
This...
2010-12-02
475 reads
Hey folks, we all know that there are some great training organizations out there (AHEM Pragmatic Works, AHEM). I hate...
2010-11-22
410 reads
Hey folks – It’s time again for SQL Saturday Tampa. Original Birthplace of Iron Chef SQL Server. I have submitted this...
2010-11-22
586 reads
Hey folks – A quick one today since I’m travelling, but I am sharing something I often share with my clients...
2010-11-22
532 reads
Hey folks, Just a quick preview that we’re hard at work again on a new book with Wiley publishing focused...
2010-11-22
424 reads
Today is a topic that is close to my heart. Many of you probably don’t know that the SQL pass...
2010-11-22
537 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