There Are a Lot of Databases
Steve notes today that there are many, many database platforms out there you can use for your next application.
2026-01-30
127 reads
Steve notes today that there are many, many database platforms out there you can use for your next application.
2026-01-30
127 reads
AI is everywhere, and if you spend any amount of time looking for answers on the Internet to your coding challenges, you've likely encountered a lot of poor, average, good, bad, amazing, and just-helpful-enough AI content. For awhile, I was avoiding the AI summary from Google as the quality seemed slightly off, but lately it's […]
2026-01-28
86 reads
GenAI technology is going to change coding, but there is still a lot of work available for humans.
2026-01-26
87 reads
An ETL issue with Excel causes issues, because the users didn't realize a limitation.
2026-01-23 (first published: 2020-10-19)
465 reads
2026-01-21
90 reads
We need data that represents the problem we want to solve, or we might not achieve our aims.
2026-01-19 (first published: 2021-01-21)
220 reads
Steve doesn't see a reason why we should have default passwords on systems ever.
2026-01-17
64 reads
When I was at the Small Data 2025 conference, one of the speakers was talking about their work with AI technologies. This person uses it a lot in their day job, often to complete tasks that they would have struggled to work on in the past, mostly because of time constraints, but also a lack […]
2026-01-16
159 reads
JSON has become a very popular data format used in many software applications. However, it's not magic.
2026-01-14
215 reads
SSIS is still in use by many customers. Steve discusses a few changes to SSIS in SQL Server 2025.
2026-01-12
238 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