2012-01-18
11 reads
2012-01-18
11 reads
2011-08-24
13 reads
What are the most influential papers in the world of Big Data? Let me suggest:...
2011-05-30
10 reads
2011-05-02
6 reads
2011-02-02
8 reads
2011-01-05
8 reads
I searched the internet for “connect and forget”. Wonderbox.net offer is described as a...
2010-10-10
9 reads
10 years ago IT professionals considered database technology “mature” and analysts were preparing to...
2010-09-13
13 reads
“The information age is an idea that the current era will be characterized by the ability of...
2010-08-22
4 reads
“Content is king” is the golden rule of the SEO. The semantic web is all about data. Any web...
2010-06-25
12 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