Dear Past Me on My First Day as a DBA
A letter to a past self from Pamela Mooney that might help a more junior DBA get up to speed quicker.
2020-09-22
3,075 reads
A letter to a past self from Pamela Mooney that might help a more junior DBA get up to speed quicker.
2020-09-22
3,075 reads
Many people with tech careers did not follow a straight path to get there. In this article, Pamela Mooney gives some advice for those who would like to be a DBA.
2020-08-31
This week Grant notes that we need to work on our learning skills, especially as the world continues to drive forward.
2020-08-29
203 reads
Having a coach guide you in sports is valuable. The same could be said for your career.
2020-08-05
87 reads
2020-08-01
116 reads
As data professionals, we should understand how language and forms of address can impact our data model. In the 21st century, we should also learn how to communicate with colleagues in a respectful and professional manner.
2020-07-30
2,414 reads
Learning to adapt the way we work is important for advancing our career, but this can be harder than we expect.
2020-07-29
148 reads
2020-07-06
141 reads
2020-07-02
97 reads
The results of a survey on software developers has some interesting insights.
2020-07-01
168 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...
FARE Labs Pvt. Ltd., a water testing facility accredited by the NABL, tests drinking...
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...
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