PASS Summit to Stay in Seattle
PASS has released the survey results as well as its decision about where to hold future Summit events. The decision...
2010-03-10
1,982 reads
PASS has released the survey results as well as its decision about where to hold future Summit events. The decision...
2010-03-10
1,982 reads
That's right, folks, I'm now a model. Or at least, a model DB. Tom LaRock released his most recent rankings and...
2010-03-10
569 reads
Tuesday night I was having a conversation with my younger son, whom we call Turtle. It's a nickname that came...
2010-03-04
1,084 reads
I had a really bad habit of trying to jump into the middle of something I didn't know very well,...
2010-03-03
4,808 reads
I'm reading a book by two teens called Do Hard Things. It's a book which represents a rejection of the...
2010-03-02
978 reads
Notice I didn't title this "Plan to Fail." We should never plan to fail. That's sabotage. And that ain't right,...
2010-02-24
1,019 reads
Back a couple of weeks ago I had the privilege of participating in a Pain of the Week webcast with Kevin...
2010-02-23
1,376 reads
I'm a big believer in looking at systems when everything is okay. I'm not the only one, as Joe Richards, a...
2010-02-22
874 reads
I was having a conversation recently with a friend and former co-worker of mine. He's bounced around here and there,...
2010-02-19
798 reads
After seeing Brent Ozar's Top 10 Reasons Why Access Doesn't Rock, and seeing all the comments it generated, I figured...
2010-02-15
4,292 reads
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...
By Vinay Thakur
Continuing from Day 6 we learned Embeddings, Semantic Search and Checks, on Day 7...
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
Comments posted to this topic are about the item Restoring On Top I
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