Onboarding Remote Employees
The pandemic has meant a lot of people started new jobs remotely. Steve has a few thoughts on this process.
2022-06-22
198 reads
The pandemic has meant a lot of people started new jobs remotely. Steve has a few thoughts on this process.
2022-06-22
198 reads
2022-06-17
121 reads
Steve has some advice on how to be a better DBA, or really better at whatever career you choose.
2022-06-15
263 reads
Get a few common questions and possible answers about Azure Data Factory that you may encounter in an interview.
2022-06-03
4,466 reads
Steve feels it is not only important to keep your word, but communicate clearly what you mean to others.
2022-05-11
357 reads
Interviews are always a challenge, but sometimes there are crazy questions. We can do better, especially in terms of how we evaluate the answer to a question.
2022-05-09
543 reads
You can find new employment with a little work and choose the best job for you.
2022-05-07
138 reads
2022-05-02
92 reads
Many of us have spent time looking through manuals or the documentation for some software or product. I know I'm on the MS docs site regularly for work, and there is no shortage of times I've used various manuals to help me fix something around the house. We usually use a manual when we want […]
2022-04-15
126 reads
2022-03-18
143 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...
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