A Short Hiatus - WaterOx Consulting
Reading Time: 1 minutesGoing to get Digby access to a little more water to rest...
The post A Short Hiatus appeared...
2015-06-10
368 reads
Reading Time: 1 minutesGoing to get Digby access to a little more water to rest...
The post A Short Hiatus appeared...
2015-06-10
368 reads
Reading Time: 5 minutesDo You Have a Personal Trainer? In WOxPod!, episode # 006 –...
The post 006 – Personal Trainer appeared first...
2015-06-05
499 reads
Reading Time: 3 minutesWe talked about whitelisting IPs before, but what about the opposite, blacklisting...
The post Blacklist a Set of...
2015-06-03
440 reads
Reading Time: 4 minutesAre You Running An Antiques Roadshow? In WOxPod!, episode # 005 –...
The post 005 – Antiques Roadshow appeared first...
2015-05-29
1,100 reads
Reading Time: 2 minutesI had a project once that was using change data capture (CDC)...
The post SQL F.A.D. – CSV List...
2015-05-27
474 reads
Reading Time: 2 minutesSometimes Fast & Dirty is OK. Other times, not so much. Sometimes...
The post SQL F.A.D. – Average Transactions Per...
2015-05-25 (first published: 2015-05-13)
5,798 reads
Reading Time: 4 minutesDo You Have a Cracked Foundation? in WOxPod!, episode # 004 –...
The post 004 – Cracked Foundation appeared first...
2015-05-22
349 reads
Reading Time: 3 minutesSometimes you have to do some things considered pretty strange in your...
The post SQL F.A.D. – Daily Identity...
2015-05-20
372 reads
Reading Time: 2 minutesMen In Black are not the only ones that can remove an...
The post Identity Removal appeared first...
2015-05-19 (first published: 2015-05-06)
6,420 reads
Reading Time: 5 minutesAre you an Apprentice DBA? in WOxPod!, episode # 003 – The...
The post 003 – The Data Guild appeared first...
2015-05-15
505 reads
By HeyMo0sh
As a DevOps professional, I’ve seen firsthand how cloud costs can quickly spiral out...
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...
Hi, ssms is free here. I can think of other reasons to do this...
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
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