Is the Time of the DBA Ending?
The DBA role might be changing, but Steve thinks this creates opportunities.
2022-03-04
420 reads
The DBA role might be changing, but Steve thinks this creates opportunities.
2022-03-04
420 reads
In some ways the world changes a lot; in others, it's very much the same. Steve notes that often change brings opportunities, if you can adapt.
2022-02-28
162 reads
Steve wants you to manage your career and actively find the job that is best for you.
2022-02-18
178 reads
If you want to actively manage your career and drive it forward, Steve has some advice.
2022-02-14
187 reads
A thread about what it takes to be a good engineer has Steve commenting on those characteristics that are important to him.
2022-01-28
169 reads
2022-01-14
302 reads
The first poll question of the year has Steve asking you to look back at 2021 and pick something good that happened.
2022-01-07
178 reads
This article looks at what an average day of a SQL Server Data Architect looks like and some of the things you would need to as a Data Architect.
2021-12-29
I work for a great company, one that I feel cares about me as more than a "resource", gives me opportunities (with responsibility and accountability), and has some nice benefits. I actually used one of those last week. I get a volunteer day every year, where I can spend time with a charity and get […]
2021-12-22
227 reads
Annual awards are a fun thing for Steve, and he hopes more organizations will start doing them.
2021-12-13
226 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