Paper Model of Hubble Telescope
Not even close to being about SQL, I ran across the plans for a paper model of the Hubble Telescope while...
2018-08-03 (first published: 2018-07-20)
2,326 reads
Not even close to being about SQL, I ran across the plans for a paper model of the Hubble Telescope while...
2018-08-03 (first published: 2018-07-20)
2,326 reads
I wrote about OLPC back in 2010 (and before that, somewhere back on a post I didnt port over here...
2018-07-30
335 reads
Earlier this year Brent Ozar invited me to attend some of his online classes for free. Free is good! Training...
2018-07-27 (first published: 2018-07-19)
2,390 reads
Another bit of miscellany, this one shows how you can use zero width characters to tag/fingerprint data. Reminds me of...
2018-07-23
520 reads
A few months back I ran across this article for checking semantic equivalencies of queries. That’s interesting, from the perspective...
2018-07-19
408 reads
Various and possibly amazing notes:
Because I waited too long the best flight I could get was into George Bush instead...
2018-06-28
399 reads
2018-06-21
151 reads
Today we have a guest editorial from Andy Warren that asks what you might do when you get settled at a new job.
2018-06-19 (first published: 2015-04-10)
240 reads
I extended my trip to SQLSaturday South Florida for a couple days vacation. If I’m going to drive 3-1/2 hours...
2018-06-19
331 reads
Notes:
Due to travel delays I missed the speaker dinner. I missed the chance to catch up and meet new people,...
2018-06-18
305 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...
I've written some documentation on using different Markdown types of files on GitHub. It's...
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
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