SQL New Blogger Challenge: Week 1 recap
Thanks to everyone who participated in week 1 of the SQL New Blogger Challenge! Eight posts were written this week...
2015-11-07
423 reads
Thanks to everyone who participated in week 1 of the SQL New Blogger Challenge! Eight posts were written this week...
2015-11-07
423 reads
Thanks to everyone who participated in week 1 of the SQL New Blogger Challenge! Eight posts were written this week...
2015-11-07
186 reads
Thanks to everyone who participated in week 1 of the SQL New Blogger Challenge! Eight posts were written this week...
2015-11-07
198 reads
Week 1 of the November 2015 SQL New Blogger Challenge is behind us, and I saw some great posts. Now,...
2015-11-05
284 reads
Week 1 of the November 2015 SQL New Blogger Challenge is behind us, and I saw some great posts. Now,...
2015-11-05
222 reads
The week of the PASS Summit is always one of the highlights of my year. Even though I keep connected...
2015-11-04
285 reads
The week of the PASS Summit is always one of the highlights of my year. Even though I keep connected...
2015-11-04
277 reads
The week of the PASS Summit is always one of the highlights of my year. Even though I keep connected...
2015-11-04
394 reads
It’s already time for week 1 of this round of the SQL New Blogger Challenge! I have to admit that...
2015-11-03
368 reads
A little over six months ago, I suggested the SQL New Blogger Challenge. I thought that maybe a few people...
2015-10-27
443 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