Referral Contest for PASS Summit
Hopefully you saw it in the special mailing that went out yesterday, but the marketing team just released a new...
2009-09-30
1,370 reads
Hopefully you saw it in the special mailing that went out yesterday, but the marketing team just released a new...
2009-09-30
1,370 reads
We’re closing in on our October 17th SQLSaturday #21 in Orlando and I thought I’d share a few things about...
2009-09-30
1,406 reads
I’m late announcing this here, but I’m pleased to announce my friend Jack Corbett is joining me in leading oPASS...
2009-09-29
1,612 reads
It’s probably a key stereotype of our business that the sales team doesn’t really get along with those in operations/production....
2009-09-28
951 reads
I saw this post by Neil Davidson about sales people being different that discusses how sales people are compensated and...
2009-09-27
2,498 reads
I ran across this article about networking sins a while back and have had it on my list to share....
2009-09-25
2,229 reads
My friend Smitha sent me this link about fishbowl conversations as something that might make sense to add to the...
2009-09-24
866 reads
Ran across The Inner Game of Stress: Outsmart Life's Challenges and Fulfill Your Potential ($16 @ Amazon) at the the library,...
2009-09-24
682 reads
In the next week or so I’ll be upgrading the SQL 2005 server that has the SQLSaturday database and I’m...
2009-09-24
1,829 reads
Back in July we had Chad Miller visit oPASS to do a presentation on Powershell. It was well received and...
2009-09-23
857 reads
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...
By Vinay Thakur
Continuing from Day 5 where we covered notebooks, HuggingFace and fine tuning AI now...
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
Comments posted to this topic are about the item Designing Delta Tables with Liquid...
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