Stages of the Game?
Saw this post by Seth Godin on Stages of the Game. Interesting, I identified with it – I’m competitive, and competing...
2012-02-09
827 reads
Saw this post by Seth Godin on Stages of the Game. Interesting, I identified with it – I’m competitive, and competing...
2012-02-09
827 reads
I saw this on a TV while walking through a store. More than a but amusing, but not too helpful...
2012-02-08
625 reads
Nice to have the option, you can opt-out (default is in) of having personalized ads. I turned it off, the...
2012-02-07
821 reads
We’ve had two of them since right after the launch and overall I’m pleased. They get used quite a bit...
2012-02-06
576 reads
In December I went through my current magazine list and made some changes, mostly based on what I had been...
2012-02-03
639 reads
Here’s a niche idea that someone might have some fun with, build a site where someone can request some or...
2012-02-02
1,157 reads
I’ll be visiting the Space Coast group (http://spacecoast.sqlpass.org/) on Feb 9th to do a presentation on Professional Development Plans. I’m...
2012-02-01
731 reads
I’ve had making home made ice cream on my list of things to try for a while, since watching an...
2012-01-31
1,660 reads
The call for applications is open today, a chance for six lucky people to do more in the SQL community...
2012-01-30
700 reads
The Idera ACE program is something I’ve been involved with for over a year now. I’ll share a bit of...
2012-01-30
1,669 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