The Journey to PostgreSQL (or anything)
Learning is fundamental in technology. Steve has a few thoughts on adopting a new technology at work.
2025-10-17
122 reads
Learning is fundamental in technology. Steve has a few thoughts on adopting a new technology at work.
2025-10-17
122 reads
2025-08-27
197 reads
Asking for a raise is a scary event for many employees. Today Steve gives you a few things to think about and some advice on how to go about changing your job.
2025-08-20
98 reads
Is AI going to kill off a lot of data professional jobs? Steve doesn't think so, but judge for yourself.
2025-08-18
126 reads
2025-08-13
95 reads
Steve talks a bit about the choice to ask for a raise in the current climate.
2025-06-14
81 reads
Steve has advice for students looking to become data professionals.
2025-06-02
149 reads
People with certifications are seeing their pay rise faster than others. Steve has a few thoughts on this today.
2025-05-05
154 reads
2025-04-30
124 reads
2025-04-21
235 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