New Cartoons at SQLServerCentral
SQLServerCentral has commissioned a new cartoon that will be coming later this week.
2014-02-03
2,560 reads
SQLServerCentral has commissioned a new cartoon that will be coming later this week.
2014-02-03
2,560 reads
2011-11-10 (first published: 2010-02-24)
11,572 reads
2011-08-11 (first published: 2009-07-29)
9,837 reads
2011-07-14 (first published: 2009-06-10)
7,100 reads
2011-06-21 (first published: 2009-04-15)
8,460 reads
2011-06-14 (first published: 2009-04-08)
7,727 reads
2011-06-09 (first published: 2009-04-01)
13,281 reads
Digitization transforms yet another of our most cherished traditions.
2011-06-07 (first published: 2009-03-25)
9,628 reads
2011-06-02 (first published: 2009-03-18)
10,100 reads
An elementary error foils Peter's plans for world domination.
2011-05-31 (first published: 2009-03-11)
10,607 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