Great Post from Jamie Thompson
Hey there Gang !
Most of you probably know Jamie Thompson has move his blog over to SQLBlog.com. This is worth noting...
2009-11-23
657 reads
Hey there Gang !
Most of you probably know Jamie Thompson has move his blog over to SQLBlog.com. This is worth noting...
2009-11-23
657 reads
One of the most underused features in SSMS is the additional templates that are available for MDX, DMX, and XMLA....
2009-11-23
587 reads
I am not about to get into a theoretical discussion of whether certifications will benefit you in your career. I...
2009-11-23
455 reads
I can’t wait until Feb 27 when Code Camp is right in my backyard! I just submitted my session for...
2009-11-23
350 reads
My presentation and sample files from SQLSaturday in Orlando are now online for you to download. Check them out at...
2009-11-23
515 reads
Many times when I'm teaching a class or working with a group, they express frustration at the load time for...
2009-11-23
412 reads
Everyone likes to get a project done, but many times in our rush to deploy we bypass some of the...
2009-11-23
417 reads
One of the most underused features in SSMS is the additional templates that are available for MDX, DMX, and XMLA....
2009-11-20
3,127 reads
One of the most underused features in SSMS is the additional templates that are available for MDX, DMX, and XMLA....
2009-11-20
1,217 reads
With the explosion of Netbooks, it has become important to find new ways to load operating systems. I recently picked...
2009-11-19
395 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