PASS Summit 2013 Schedule
Each year, I like to compile my own shortcut, cheat sheet version of the PASS Summit schedule. I’m not talking...
2013-09-10
1,053 reads
Each year, I like to compile my own shortcut, cheat sheet version of the PASS Summit schedule. I’m not talking...
2013-09-10
1,053 reads
So I’m studying a lot these days, and I find myself evaluating and reconsidering the theories of “study” that I’ve...
2013-09-09
694 reads
I’m studying my butt off for the soon-to-be-deprecated Microsoft Certified Master cert’s lab – and the three unfinished prerequisite certs I’ve...
2013-09-05
709 reads
We just finished the webshow last night, when one of our chatroom fellows – Nic Cain – told us that the MCM...
2013-08-31
1,182 reads
Last weekend I gave my “Unraveling Tangled Code” talk at SQL Saturday Oklahoma, and they were kind enough to record...
2013-08-30
1,119 reads
Let’s hear a story. The story is true, but elements have been generalized and fictionalized for simplicity, and so’s not...
2013-08-23
606 reads
The other day I found myself in a discussion about media – print, broadcast, and social – and having to explain why...
2013-08-14
866 reads
It’s summer here in the northern hemisphere, and in Texas we’re getting 100F-plus weather pretty consistently. This brain-frying weather may...
2013-08-12
579 reads
The T-SQL TRY/CATCH structure (“new” in SQL 2005!) is, as the professionals say, da bomb. It’s also underused and under-understood,...
2013-06-20
2,409 reads
A good many companies still have servers chugging along on SQL Server 2000 (or even, as some of us noted...
2013-06-13
902 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