SQL Saturday 49 Delivery Mechanisms - Presentation Slide Deck and Files
This past weekend, my wife and I travelled down to Orlando for SQL Saturday 49. I wasn't planning on presenting,...
2010-10-20
411 reads
This past weekend, my wife and I travelled down to Orlando for SQL Saturday 49. I wasn't planning on presenting,...
2010-10-20
411 reads
I posted a blog recently about returning a listing of all indexes for database, which is good if you want...
2010-10-16
1,152 reads
While doing some performance testing recently and utilizing some of the DMV’s I figured, I better find out when the...
2010-10-16
1,548 reads
I typically don’t blog about other people blogs, because quite frankly I don’t like giving summations of the work someone...
2010-10-14
646 reads
A while ago, I showed you how to find out what indexes were on a table using the GUI. Today,...
2010-10-14
34,742 reads
A while ago, I posted a blog on how one could perform running totals using Reporting Services and a user...
2010-10-11
4,394 reads
Presenting is a huge fear for many and it is no different for me. I have been presenting at SQL...
2010-10-10
590 reads
Recently, I came across a forum post from a user trying to determine if a directory existed in the file...
2010-10-06
14,289 reads
Here is another one of those strange but true things that I come across every so often which I thought...
2010-10-06
3,573 reads
While working on a project recently, I came across a conversion that was trying to convert a date to an...
2010-10-05
799 reads
By Steve Jones
AI is everywhere. It’s in the news, it’s being added to every product, management...
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...
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