2021-05-14
243 reads
2021-05-14
243 reads
Today Steve wonders what advice you might give someone starting out their career in technology.
2021-05-07
103 reads
Documentation may not be something we aspire to do, but it is a valuable skill.
2021-04-30
426 reads
When do we ask for help? It's a tough balance to strike between asking too soon or waiting too long.
2021-03-26
123 reads
In 2008, I managed to achieve the goal of becoming a Microsoft Certified Trainer. Once I achieved the status, Microsoft shipped me a binder with dozens of DVDs containing lab VMs and class materials for all the current classes. At some point, instead of receiving DVDs, you were expected to download images which was quite […]
2021-03-13
171 reads
We all need to learn and tackle new technology in our career. When we do so, are we impostors or students?
2021-03-12
149 reads
Many organizations will change their teams around over time, but not all do this regularly. Steve talks about how Redgate does this every year.
2021-02-24
95 reads
2021-02-22
189 reads
2021-02-16
5,209 reads
If you have set any new goals for your career this year, Steve is asking you to let him know.
2021-01-08
113 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