A New Stressor
I tend to be amused when I run into something that causes me stress because I like to think – foolishly...
2014-04-30
1,428 reads
I tend to be amused when I run into something that causes me stress because I like to think – foolishly...
2014-04-30
1,428 reads
Not to short change fund raising, but the toughest goal to meet for this year is registration/attendance if we’re going...
2014-04-30
1,525 reads
Our attendance number for last year was 285, so we’re going to aim for increasing that by 20% to 342....
2014-04-29
1,364 reads
Our attendance number for last year was 285, so we’re going to aim for increasing that by 20% to 342....
2014-04-29
1,293 reads
I’ve committed to presenting but haven’t decided on the presentation yet. It will probably be a remote presentation because it’s...
2014-04-29
1,268 reads
I saw this write up about Aaron Sorkin and the writing on Newsroom just after posting Blogging-Write More and found...
2014-04-28
638 reads
Yesterday I submitted a new question of the day based on the best idea generator you can find – something that...
2014-04-24
562 reads
Same room but different seating arrangement. Instead of separate table pushed some together, used the space better and more a...
2014-04-21
519 reads
I’m presenting tonight at oPASS, two presentations worth! If you’re in Orlando I hope you’ll attend, details at http://orlando.sqlpass.org/.
2014-04-17
530 reads
Kevin Kline is speaking at MagicPASS tonight – on two topics! If you’re in the Orlando area I hope you’ll try...
2014-04-16
533 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