The Basics of Troubleshooting
After seeing several cases in the past couple of months where I felt the basics of troubleshooting were violated, I...
2010-12-07
2,805 reads
After seeing several cases in the past couple of months where I felt the basics of troubleshooting were violated, I...
2010-12-07
2,805 reads
After seeing several cases in the past couple of months where I felt the basics of troubleshooting were violated, I...
2010-12-06
2,220 reads
Took a break from posting this last Friday due to the holidays. But I'm back with the weekly updates.
Monday
PASS Data Warehousing/BI...
2010-12-03
939 reads
Last night we were troubleshooting really poor performance on a core system. One of the things being investigated was a...
2010-11-24
1,027 reads
Tuesday
Pragmatic Works - Building Calculations in SSAS 2008 - Brian Knight
PASS - PASS Summit 2010 Recap Round Table - Aaron Nelson
I'll be trying to...
2010-11-19
631 reads
And I guess the experts would say that I probably should. I know that the professional development presentations by Steve...
2010-11-19
1,815 reads
... and I'm wary, but not weary. I'm not weary because I'm looking forward to trying to help. I'm not weary...
2010-11-18
1,139 reads
I needed to figure out how much space was required to maintain 7 days of event log entries for the...
2010-11-17
2,338 reads
This is a problem we just solved, which was causing us to not be able to hit the remote registry...
2010-11-16
2,270 reads
Tuesday
SQL Lunch - Get a Lever and Pick Any Turtle: Lifting with Metadata - Cade Roux
Pragmatic Works - SSIS Dataflow - Designing for Performance...
2010-11-12
797 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