Smooth Compound Operators
Ok, so I can’t promise you’ll be smooth by the end of this entry, but I can promise you’ll be...
2009-11-03
228 reads
Ok, so I can’t promise you’ll be smooth by the end of this entry, but I can promise you’ll be...
2009-11-03
228 reads
It’s very exciting to be involved with the SQL Saturday here in South Florida. There are already so many great...
2009-11-03
337 reads
I get a lot of requests for explanations about the different concepts and the easiest way to demo partitioning in...
2009-11-03
355 reads
I was working with a team of developers this week who were having the hardest time finding the keystroke to...
2009-11-03
324 reads
We are all facing the challenges of this new economy. There are very few people and industries in the world...
2009-11-03
298 reads
Recently I was working with client and they were discussing the pet peeves of some of the new intellisense features...
2009-11-03
400 reads
Greg emailed me a great question from my week of warehousing webinar the other day. We were discussing disk performance...
2009-11-03
268 reads
How exciting was last week! Some of the top experts in the country all gathered together through support from SQLServerCentral.com,...
2009-11-03
204 reads
I am not about to get into a theoretical discussion of whether certifications will benefit you in your career. I...
2009-10-30
1,446 reads
I can’t wait until Feb 27 when Code Camp is right in my backyard! I just submitted my session for...
2009-10-23
359 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