2014-06-25
2,008 reads
2014-06-25
2,008 reads
There may be an easier way, but this was a quick way to find ALL the checked out files in...
2014-06-24
1,422 reads
No Files For You is another Question Of The Day. I ended up making this one just a little more...
2014-06-24
477 reads
Meetings are a part of modern corporate work that many of us despise. However is that because
2014-06-23
224 reads
Reading, Writing, and Riskmetic is another Question of the Day, this one about how to allow developers to understand performance...
2014-06-23
540 reads
Bad Meetings or Meeting Badly is the editorial of the day today. Looking at it today, I wish I had...
2014-06-23
516 reads
Poecilonym Madness! is my latest question that tests your knowledge of creating/dropping tables, views, and synonyms. Here’s the fun part...
2014-06-20
609 reads
2014-06-20
1,782 reads
Below is the chart Kendal Van Dyke maintains for us in Orlando showing year over year registration counts. Don’t I...
2014-06-19
501 reads
Next week will begin our weekly planning call, so ahead of that (and perhaps a bit later than I should...
2014-06-19
566 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