New Logo Revealed
I’ve been pondering the creation of a logo for quite some time and I finally decided to go ahead with...
2018-07-17
219 reads
I’ve been pondering the creation of a logo for quite some time and I finally decided to go ahead with...
2018-07-17
219 reads
If you haven’t heard, Power BI is doing a world tour, eight cities in four months and Charlotte, NC is...
2018-07-17
250 reads
It’s been a bit slow in the US this week due to the American 4th of July holiday, but it’s...
2018-07-10 (first published: 2018-07-05)
3,478 reads
I am excited to announce that I have been selected to speak at SQL Saturday Baton Rouge (#749) on August...
2018-06-28
349 reads
I recently presented two sessions at Music City Tech and just received my feedback. I got great feedback and looks...
2018-06-22 (first published: 2018-06-11)
1,465 reads
Data Quality is a huge issue, especially now with more and more data being created daily. According to Micro Focus...
2018-06-20
267 reads
I am so excited to announce that I will be giving my Data Types Do Matter session for the SalemSQL...
2018-06-14
249 reads
When baseball players are called up to the Major League from the Minor League it’s referred to as getting “Called...
2018-06-06
278 reads
I know Nashville is most famous for Country music, but in the recent years, it has become home to more...
2018-06-05
283 reads
I am excited to announce that I have been selected to speak at Music City Tech held at Vanderbilt University...
2018-04-04
274 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